diff --git a/sdk/core/Azure.Core/tests/TestFramework/RecordSession.cs b/sdk/core/Azure.Core/tests/TestFramework/RecordSession.cs index a0cae81a326f..6ebdf28aa6a2 100644 --- a/sdk/core/Azure.Core/tests/TestFramework/RecordSession.cs +++ b/sdk/core/Azure.Core/tests/TestFramework/RecordSession.cs @@ -78,15 +78,7 @@ public void Sanitize(RecordedTestSanitizer sanitizer) { lock (Entries) { - foreach (RecordEntry entry in Entries) - { - sanitizer.Sanitize(entry); - } - - foreach (var variable in Variables.ToArray()) - { - Variables[variable.Key] = sanitizer.SanitizeVariable(variable.Key, variable.Value); - } + sanitizer.Sanitize(this); } } diff --git a/sdk/core/Azure.Core/tests/TestFramework/RecordedTestSanitizer.cs b/sdk/core/Azure.Core/tests/TestFramework/RecordedTestSanitizer.cs index 0bab62dc6a18..9d7e062e4f8d 100644 --- a/sdk/core/Azure.Core/tests/TestFramework/RecordedTestSanitizer.cs +++ b/sdk/core/Azure.Core/tests/TestFramework/RecordedTestSanitizer.cs @@ -2,6 +2,8 @@ // Licensed under the MIT License. using System.Collections.Generic; +using System.Globalization; +using System.Linq; using System.Text; namespace Azure.Core.Testing @@ -40,12 +42,11 @@ public virtual byte[] SanitizeBody(string contentType, byte[] body) } public virtual string SanitizeVariable(string variableName, string environmentVariableValue) => environmentVariableValue; + public virtual void SanitizeBody(RecordEntryMessage message) { if (message.Body != null) { - int contentLength = message.Body.Length; - message.TryGetContentType(out string contentType); if (message.TryGetBodyAsText(out string text)) @@ -57,9 +58,8 @@ public virtual void SanitizeBody(RecordEntryMessage message) message.Body = SanitizeBody(contentType, message.Body); } - UpdateSanitizedContentLength(message.Headers, contentLength, message.Body?.Length ?? 0); + UpdateSanitizedContentLength(message.Headers, message.Body?.Length ?? 0); } - } public virtual void Sanitize(RecordEntry entry) @@ -75,6 +75,18 @@ public virtual void Sanitize(RecordEntry entry) SanitizeBody(entry.Response); } + public virtual void Sanitize(RecordSession session) + { + foreach (RecordEntry entry in session.Entries) + { + Sanitize(entry); + } + + foreach (KeyValuePair variable in session.Variables.ToArray()) + { + session.Variables[variable.Key] = SanitizeVariable(variable.Key, variable.Value); + } + } /// /// Optionally update the Content-Length header if we've sanitized it @@ -83,18 +95,13 @@ public virtual void Sanitize(RecordEntry entry) /// wasn't already present. /// /// The Request or Response headers - /// THe original Content-Length /// The sanitized Content-Length - protected static void UpdateSanitizedContentLength(IDictionary headers, int originalLength, int sanitizedLength) + protected static void UpdateSanitizedContentLength(IDictionary headers, int sanitizedLength) { - // Note: If the RequestBody/ResponseBody was set to null by our - // sanitizer, we'll pass 0 as the sanitizedLength and use that as - // our new Content-Length. That's fine for all current scenarios - // (i.e., we never do that), but it's possible we may want to - // remove the Content-Length header in the future. - if (originalLength != sanitizedLength && headers.ContainsKey("Content-Length")) + // Only update Content-Length if already present. + if (headers.ContainsKey("Content-Length")) { - headers["Content-Length"] = new string[] { sanitizedLength.ToString() }; + headers["Content-Length"] = new string[] { sanitizedLength.ToString(CultureInfo.InvariantCulture) }; } } } diff --git a/sdk/identity/Azure.Identity/tests/IdentityRecordedTestSanitizer.cs b/sdk/identity/Azure.Identity/tests/IdentityRecordedTestSanitizer.cs index dcac6ffb6802..9b0d7131aa8f 100644 --- a/sdk/identity/Azure.Identity/tests/IdentityRecordedTestSanitizer.cs +++ b/sdk/identity/Azure.Identity/tests/IdentityRecordedTestSanitizer.cs @@ -27,7 +27,7 @@ private void SanitizeTokenRequest(RecordEntry entry) { entry.Request.Body = Encoding.UTF8.GetBytes("Sanitized"); - UpdateSanitizedContentLength(entry.Request.Headers, 0, entry.Request.Body.Length); + UpdateSanitizedContentLength(entry.Request.Headers, entry.Request.Body.Length); } diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/DataSourcesRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/DataSourcesRestClient.cs index 18f720506c11..5cab2584783e 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/DataSourcesRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/DataSourcesRestClient.cs @@ -66,6 +66,7 @@ internal HttpMessage CreateCreateOrUpdateRequest(string dataSourceName, DataSour request.Headers.Add("If-None-Match", ifNoneMatch); } request.Headers.Add("Prefer", "return=representation"); + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(dataSource); @@ -201,6 +202,7 @@ internal HttpMessage CreateDeleteRequest(string dataSourceName, Guid? xMsClientR { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -290,6 +292,7 @@ internal HttpMessage CreateGetRequest(string dataSourceName, Guid? xMsClientRequ { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -399,6 +402,7 @@ internal HttpMessage CreateListRequest(string select, Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -494,6 +498,7 @@ internal HttpMessage CreateCreateRequest(DataSource dataSource, Guid? xMsClientR { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(dataSource); diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/DocumentsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/DocumentsRestClient.cs index c305c670d96f..40d5bd9c411c 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/DocumentsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/DocumentsRestClient.cs @@ -65,6 +65,7 @@ internal HttpMessage CreateCountRequest(Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); return message; } @@ -147,6 +148,7 @@ internal HttpMessage CreateSearchPostRequest(SearchOptions searchRequest, Guid? { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(searchRequest); @@ -265,6 +267,7 @@ internal HttpMessage CreateGetRequest(string key, IEnumerable selectedFi { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); return message; } @@ -399,6 +402,7 @@ internal HttpMessage CreateSuggestPostRequest(SuggestOptions suggestRequest, Gui { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(suggestRequest); @@ -511,6 +515,7 @@ internal HttpMessage CreateIndexRequest(IndexBatch batch, Guid? xMsClientRequest { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(batch); @@ -625,6 +630,7 @@ internal HttpMessage CreateAutocompletePostRequest(AutocompleteOptions autocompl { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(autocompleteRequest); diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexersRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexersRestClient.cs index 528514f77eb3..837d193a5bf0 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexersRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexersRestClient.cs @@ -57,6 +57,7 @@ internal HttpMessage CreateResetRequest(string indexerName, Guid? xMsClientReque { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -140,6 +141,7 @@ internal HttpMessage CreateRunRequest(string indexerName, Guid? xMsClientRequest { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -232,6 +234,7 @@ internal HttpMessage CreateCreateOrUpdateRequest(string indexerName, SearchIndex request.Headers.Add("If-None-Match", ifNoneMatch); } request.Headers.Add("Prefer", "return=representation"); + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(indexer); @@ -367,6 +370,7 @@ internal HttpMessage CreateDeleteRequest(string indexerName, Guid? xMsClientRequ { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -456,6 +460,7 @@ internal HttpMessage CreateGetRequest(string indexerName, Guid? xMsClientRequest { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -565,6 +570,7 @@ internal HttpMessage CreateListRequest(string select, Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -660,6 +666,7 @@ internal HttpMessage CreateCreateRequest(SearchIndexer indexer, Guid? xMsClientR { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(indexer); @@ -771,6 +778,7 @@ internal HttpMessage CreateGetStatusRequest(string indexerName, Guid? xMsClientR { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexesRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexesRestClient.cs index 1c1adf8f5a21..3d287e265635 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexesRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/IndexesRestClient.cs @@ -55,6 +55,7 @@ internal HttpMessage CreateCreateRequest(SearchIndex index, Guid? xMsClientReque { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(index); @@ -168,6 +169,7 @@ internal HttpMessage CreateListRequest(string select, Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -278,6 +280,7 @@ internal HttpMessage CreateCreateOrUpdateRequest(string indexName, SearchIndex i request.Headers.Add("If-None-Match", ifNoneMatch); } request.Headers.Add("Prefer", "return=representation"); + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(index); @@ -415,6 +418,7 @@ internal HttpMessage CreateDeleteRequest(string indexName, Guid? xMsClientReques { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -504,6 +508,7 @@ internal HttpMessage CreateGetRequest(string indexName, Guid? xMsClientRequestId { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -611,6 +616,7 @@ internal HttpMessage CreateGetStatisticsRequest(string indexName, Guid? xMsClien { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -718,6 +724,7 @@ internal HttpMessage CreateAnalyzeRequest(string indexName, AnalyzeRequest reque { request0.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request0.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request0.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(request); diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/ServiceRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/ServiceRestClient.cs index 577f345d9b0e..73bb62d9415e 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/ServiceRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/ServiceRestClient.cs @@ -55,6 +55,7 @@ internal HttpMessage CreateGetServiceStatisticsRequest(Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/SkillsetsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/SkillsetsRestClient.cs index 5f9b0acb7fcf..eaa60b1b7baf 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/SkillsetsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/SkillsetsRestClient.cs @@ -66,6 +66,7 @@ internal HttpMessage CreateCreateOrUpdateRequest(string skillsetName, Skillset s request.Headers.Add("If-None-Match", ifNoneMatch); } request.Headers.Add("Prefer", "return=representation"); + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(skillset); @@ -201,6 +202,7 @@ internal HttpMessage CreateDeleteRequest(string skillsetName, Guid? xMsClientReq { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -290,6 +292,7 @@ internal HttpMessage CreateGetRequest(string skillsetName, Guid? xMsClientReques { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -399,6 +402,7 @@ internal HttpMessage CreateListRequest(string select, Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -494,6 +498,7 @@ internal HttpMessage CreateCreateRequest(Skillset skillset, Guid? xMsClientReque { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(skillset); diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Operations/SynonymMapsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/Operations/SynonymMapsRestClient.cs index 2e4131e6bbb3..a67fd04f645d 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Operations/SynonymMapsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Operations/SynonymMapsRestClient.cs @@ -66,6 +66,7 @@ internal HttpMessage CreateCreateOrUpdateRequest(string synonymMapName, SynonymM request.Headers.Add("If-None-Match", ifNoneMatch); } request.Headers.Add("Prefer", "return=representation"); + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(synonymMap); @@ -201,6 +202,7 @@ internal HttpMessage CreateDeleteRequest(string synonymMapName, Guid? xMsClientR { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -290,6 +292,7 @@ internal HttpMessage CreateGetRequest(string synonymMapName, Guid? xMsClientRequ { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -399,6 +402,7 @@ internal HttpMessage CreateListRequest(string select, Guid? xMsClientRequestId) { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); return message; } @@ -494,6 +498,7 @@ internal HttpMessage CreateCreateRequest(SynonymMap synonymMap, Guid? xMsClientR { request.Headers.Add("x-ms-client-request-id", xMsClientRequestId.Value); } + request.Headers.Add("Accept", "application/json; odata.metadata=minimal"); request.Headers.Add("Content-Type", "application/json"); using var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(synonymMap); diff --git a/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs b/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs index 70c0a2c98bd9..76e1b8a7408e 100644 --- a/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs +++ b/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs @@ -3,7 +3,6 @@ using System; using System.Diagnostics; -using System.Text.Json; using Azure.Core; using Azure.Core.Pipeline; diff --git a/sdk/search/Azure.Search.Documents/src/SearchIndexClient.cs b/sdk/search/Azure.Search.Documents/src/SearchIndexClient.cs index 9f7cd99dd2ae..aee4de0fb562 100644 --- a/sdk/search/Azure.Search.Documents/src/SearchIndexClient.cs +++ b/sdk/search/Azure.Search.Documents/src/SearchIndexClient.cs @@ -1567,6 +1567,7 @@ private async Task> IndexDocumentsInternal( { request.ClientRequestId = options?.ClientRequestId.ToString(); } + request.Headers.Add("Accept", "application/json; odata.metadata=none"); request.Headers.Add("Content-Type", "application/json"); using Utf8JsonRequestContent content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(documents); diff --git a/sdk/search/Azure.Search.Documents/src/autorest.md b/sdk/search/Azure.Search.Documents/src/autorest.md index 86e70ee1c92b..94b4a88ffd85 100644 --- a/sdk/search/Azure.Search.Documents/src/autorest.md +++ b/sdk/search/Azure.Search.Documents/src/autorest.md @@ -65,6 +65,18 @@ directive: transform: $["x-ms-client-name"] = "SearchServiceError" ``` +### Rename one of SearchMode definitions + +SearchMode is duplicated across swaggers. Rename one of them, even though it will be internalized. +This prevents the serializer from attempting to use undefined values until [Azure/autorest.csharp#583](https://github.com/Azure/autorest.csharp/issues/583) is fixed. + +```yaml +directive: +- from: searchservice.json + where: $.definitions.Suggester.properties.searchMode + transform: $["x-ms-enum"].name = "SuggesterMode"; +``` + ## C# Customizations Shape the swagger APIs to produce the best C# API possible. We can consider fixing these in the swagger files if they would benefit other languages. @@ -87,14 +99,31 @@ modelerfour: group-parameters: false ``` -### Rename one of SearchMode definitions +### Set odata.metadata Accept header in operations -SearchMode is duplicated across swaggers. Rename one of them, even though it will be internalized. -This prevents the serializer from attempting to use undefined values until [Azure/autorest.csharp#583](https://github.com/Azure/autorest.csharp/issues/583) is fixed. +searchindex.json needs odata.metadata=none and searchservice.json needs odata.metadata=minimal in the Accept header. ```yaml directive: -- from: searchservice.json - where: $.definitions.Suggester.properties.searchMode - transform: $["x-ms-enum"].name = "SuggesterMode"; +- from: swagger-document + where: $.paths + transform: > + for (var path in $) { + for (var opName in $[path]) { + var accept = "application/json; odata.metadata="; + accept += path.startsWith("/docs") ? "none" : "minimal"; + + var op = $[path][opName]; + op.parameters.push({ + name: "Accept", + "in": "header", + required: true, + type: "string", + enum: [ accept ], + "x-ms-parameter-location": "method" + }); + } + } + + return $; ``` diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json index 57b29524d2c1..e72edff87322 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "94", "Content-Type": "application/json", - "traceparent": "00-e7968029b039754387db9908f605d7a1-514ee58052063145-00", + "traceparent": "00-c57e46eece73ff45b5fc4a6777a81adc-f5bc4b9204900540-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6f3d77229cc71cc50b5eb3ad02218b24", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:16 GMT", - "elapsed-time": "36", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "74", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,14 +37,18 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [] } } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1881067006", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json index 5052aa2b19d0..c49066825a86 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "94", "Content-Type": "application/json", - "traceparent": "00-990ae98c07975f4baaa89220a53b6a1b-f83d3a6eebc96647-00", + "traceparent": "00-85d99cb0ed05e4479998d06f3f3ec35d-ef8ae92228817441-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1879001f3bba4456832277712ba0dcff", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "4", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,14 +37,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [] } } ], "Variables": { "RandomSeed": "1394587558", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json index dff8803a3d04..e35d642e31d5 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "112", "Content-Type": "application/json", - "traceparent": "00-a008f2ee94a929408e33bb6977ccdca0-c1a23588b217bc4f-00", + "traceparent": "00-454348b858c6c24d97e449abc025ce2a-e991af1c2784c444-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4c4f74ccc55692b9ef5f75074d36dcb0", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:16 GMT", - "elapsed-time": "102", + "Content-Length": "54", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "28", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "polite", @@ -48,7 +48,7 @@ ], "Variables": { "RandomSeed": "828291068", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json index 10b1a794b737..16ed8181f1cc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "199", "Content-Type": "application/json", - "traceparent": "00-640cd9933780b0469a502f9785bf5331-109e6326b8fa9c4f-00", + "traceparent": "00-07b11140c1b0d24e8807764460bef4f3-493ebb51e66ece49-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f8c845e51731603e2e0f7960ce9d9038", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:17 GMT", - "elapsed-time": "58", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "modern", @@ -53,7 +53,7 @@ ], "Variables": { "RandomSeed": "1645982235", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json index 31b6e87ef29c..934c76745a64 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "199", "Content-Type": "application/json", - "traceparent": "00-cb715ebad473e14baa04ddffcb6c689c-a8108955249a194b-00", + "traceparent": "00-07c11c7c8a25c044b3e53ebea3720187-9bacc278a162a743-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "eb0865a2838daba95fdcefa4899ea5f7", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "9", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "modern", @@ -53,7 +53,7 @@ ], "Variables": { "RandomSeed": "1398217694", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json index 68d3e4849581..bed96301acef 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "112", "Content-Type": "application/json", - "traceparent": "00-0ab1f7170eebc3419a386435115df7ca-2f3a5a831482b944-00", + "traceparent": "00-9fed8db7e04a5d4a88b5a462136c6ac4-31533de03984ec4c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "64c8f2957acf4b9683b5923d9df5326a", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "7", + "Content-Length": "54", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "polite", @@ -48,7 +48,7 @@ ], "Variables": { "RandomSeed": "50280089", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json index eeb3aac0140f..373cdd186d35 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-122730bd4ece164ba6866861eb4b1e5b-8219ad374fd4dc42-00", + "traceparent": "00-bb2a79f732b64c40be5b243c8a51524b-606bb699b3cb1142-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bf3ba05d0f02bc14a10549a3a6a48398", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:17 GMT", - "elapsed-time": "6", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,14 +36,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [] } } ], "Variables": { "RandomSeed": "1557663442", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json index c9f8fef9bbae..fdb7583d1cab 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-cfa08c8f1610ca4f8baa582d4fa771ff-22929c856b3b9d4e-00", + "traceparent": "00-7629c0fa200cc8419e6d815777fcf4bb-c8f7e3f32875084e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4ff0621fa620cff0b5598b44909565ea", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "5", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,14 +36,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [] } } ], "Variables": { "RandomSeed": "241835370", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json index dae4d836403a..cecbae9804bf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-031089de4f429046a0b5f0b08c6392b9-70b375b7fdb8ec41-00", + "traceparent": "00-6b3b375f76d3724388f66631079b6348-302b3cd8f407ce43-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4837c8e58156ec941241d385a9cdc8fd", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "274", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:16 GMT", - "elapsed-time": "6", + "Content-Length": "109", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "pool", @@ -54,7 +54,7 @@ ], "Variables": { "RandomSeed": "1397489542", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json index 0a9fe9a494ab..68949089bf49 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-288a7178bf356846aa9efeb8ce67098a-994584b8713c8e47-00", + "traceparent": "00-ed3f63e9aa3a3e46858024b93588f98e-b01c6d44d9271048-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "16b7964e2bcee97574968c9ce40596b1", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "274", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", + "Content-Length": "109", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "pool", @@ -54,7 +54,7 @@ ], "Variables": { "RandomSeed": "1713520203", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json index 7ea750521214..6e2dbdde0131 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "105", "Content-Type": "application/json", - "traceparent": "00-a8f26d59b1e5084b9ee60742dd070dc3-6f9c48d02b69cd4a-00", + "traceparent": "00-edc348924afe8645ac43c25952d72199-05ab952289eb8c48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "edfd09388ec2b6212774be5f65822d31", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:17 GMT", - "elapsed-time": "6", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "360658384", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json index 0a9c0919e35d..af25b5d6ff00 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "105", "Content-Type": "application/json", - "traceparent": "00-069462e3c70beb4abf55bdf0acb545d1-52a2a8fd03c86b44-00", + "traceparent": "00-9cd523f075678d4aa1e19867aec94942-dfdbc8d0be8a304d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "869339ba1914679e297de403a9df39dd", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "5", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1053158736", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json index b1c793d1d60d..9824ab94c021 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-dd8974fab0c18148a5b07fecc1ca3f19-517655cba13b094d-00", + "traceparent": "00-3d5505b04618244f8c42d3e2e2c3f9db-4c1f8738edaace49-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "836405f774d01ce051263e9c5247117e", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "387", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:17 GMT", - "elapsed-time": "5", + "Content-Length": "222", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "351280611", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json index 5f0fc0cf6c74..c35995b8b03f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-bf868bef49369e4cbefb8041a82d5390-d9e984cf3bd5f444-00", + "traceparent": "00-d3c2cc6750f49148a0d771a4804b9491-8f76c2687c91284b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4dedd4c7726e4d35e45f1c715ba7d89a", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "387", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:20 GMT", - "elapsed-time": "6", + "Content-Length": "222", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "1058886123", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json index 18e173d671ab..5697a557a118 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "36", "Content-Type": "application/json", - "traceparent": "00-f54025ce8f095a4ea98550aceefa9ab9-6a95e30de388a446-00", + "traceparent": "00-223a91fbcd5cd64397d2477de2b6b75e-140e6c08b86e0947-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "40ea6fcb4189c48fb4658454cf3b00a9", "x-ms-return-client-request-id": "true" @@ -22,10 +23,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "387", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:16 GMT", - "elapsed-time": "12", + "Content-Length": "222", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -34,7 +35,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -62,7 +62,7 @@ ], "Variables": { "RandomSeed": "1143673798", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json index 616299c3368e..50a38f5ba5e4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "36", "Content-Type": "application/json", - "traceparent": "00-16733f204de00b449b63cdf4e508ee14-1caee827d82fb947-00", + "traceparent": "00-d576dbf0d94f9d44af43b4bfe7b960dd-8dfd5728c594b54d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7edde5813978a96d073fde61935be7fc", "x-ms-return-client-request-id": "true" @@ -22,9 +23,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "387", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:21 GMT", + "Content-Length": "222", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -34,7 +35,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -62,7 +62,7 @@ ], "Variables": { "RandomSeed": "671885112", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json index 9fc654c4ec84..a59a7381ca0a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-7e2eae424ac292439f6828ef30ae6275-9b87728b3da11b48-00", + "traceparent": "00-ac5dad0030f7384eac83e2ed9a76a94e-5ddef0054da22d45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0e64f365406cc7f5f3873703a106b469", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "373", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "6", + "Content-Length": "208", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "very police", @@ -55,7 +55,7 @@ ], "Variables": { "RandomSeed": "417866891", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json index 6d445e548097..3d5c70934521 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-44c43b7a90cb3b4bbf141c1a8b4e171c-822c3806bdd1e849-00", + "traceparent": "00-b44315bf7d854244827ae028a570a1d1-ca11edb0519b364d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "13f4ebfe4ca7795cde2ed18d91924aae", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "373", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:21 GMT", - "elapsed-time": "6", + "Content-Length": "208", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "very police", @@ -55,7 +55,7 @@ ], "Variables": { "RandomSeed": "253423147", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json index 71b454a5a7df..90ac5329d900 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "97", "Content-Type": "application/json", - "traceparent": "00-d1b8b0a798c2ac4fa8aa47fc5b799683-434535a5de160c49-00", + "traceparent": "00-8ea4aacb7abe9343bec673bbc4c3b781-9c419d3ea691d74c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "efc7a0aba29c103d801829a20981a518", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "282", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "7", + "Content-Length": "117", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "very polite", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1757180672", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json index 80dfdca12957..92063dce2203 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "97", "Content-Type": "application/json", - "traceparent": "00-83f24aafb608874abc995fe1c8eb2d52-881dc4e642c9a441-00", + "traceparent": "00-21157625c7567d44b84cbfd99b4b581d-3671c94b42056e42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0f66fcbeb1d6ef60b26a400a224651c9", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "282", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:20 GMT", + "Content-Length": "117", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "very polite", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1441381448", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json index 015258bb6e98..e6f135eb4961 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "79", "Content-Type": "application/json", - "traceparent": "00-ec782405d0ee1841931e2eae3d801358-4a80928ba39d9b4f-00", + "traceparent": "00-6fd4bb2ef5807f4ea4b9c8b67eb92679-4c1ebe38e66e8344-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5ca86594e8d25f20dbb3c61763379935", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "342", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "7", + "Content-Length": "177", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model", @@ -60,7 +60,7 @@ ], "Variables": { "RandomSeed": "1963046740", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json index 868619a8d07b..cd662b165adf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "79", "Content-Type": "application/json", - "traceparent": "00-d0307e892cdf6d45b88cd5b387a4de79-6fbfa5c47b13de49-00", + "traceparent": "00-67602e8f3746e6419b5f31ad42e94851-975c5cde40dfe942-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a08d464f4ac88446775cc8c10d333177", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "342", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:21 GMT", - "elapsed-time": "8", + "Content-Length": "177", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model", @@ -60,7 +60,7 @@ ], "Variables": { "RandomSeed": "59185497", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json index d8f27f6fac7e..7b1e4012be6c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-63bcee08c5e18e41aaf956ae13cba008-7a5b07281332f94b-00", + "traceparent": "00-13053ee19c1c5e46b2b4acc635788a23-3442605faa74df4f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e5c7d9b997a1b593ca55ff33ebda806b", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "6", + "Content-Length": "54", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "modern", @@ -49,7 +49,7 @@ ], "Variables": { "RandomSeed": "2087664549", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json index b037129b092f..693fae643229 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-faba7e0dba6a74469c2fe1743d476a6a-749fe73a94de8a43-00", + "traceparent": "00-fd6e34799c5a8947b94972733ca2fb12-a2e509d5446c1c46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "69f62892c7dc580724c51cce1e00feb0", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:21 GMT", - "elapsed-time": "8", + "Content-Length": "54", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "148", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "modern", @@ -49,7 +49,7 @@ ], "Variables": { "RandomSeed": "912744819", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json index f5c93e36cc1c..52ff2ba26b18 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-3f4866709e614d4b9ead0a4447a3f8da-d6e5722fae41d346-00", + "traceparent": "00-2962a61fe85c9c4eb6e4b4066fa136ff-b35cfaaa2612f241-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "29c60ffc20158e0f544207fec06a07fb", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1372502635", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json index 12719578329e..535ee1ad6065 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-fbb611c8c7452d41afa1593a6be4f61b-baea505360104244-00", + "traceparent": "00-1ad60cb67f5e734688041743e37c468f-d0933c1d5ff8564c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3dc4828d45d45e614c9b358bb2ee8cb7", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", + "Content-Length": "95", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1444061374", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json index 5c1f90fad38e..8972d1085e95 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "84", "Content-Type": "application/json", - "traceparent": "00-6bcea405935bb649814f1b8e85b4198e-393598f81642ea44-00", + "traceparent": "00-080701c3b23260458b5acd6cb1e08682-c81b4787272a8a4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f3c20d84a81656069c11f3761f03f2db", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "412", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "7", + "Content-Length": "247", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -64,7 +64,7 @@ ], "Variables": { "RandomSeed": "633936821", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json index 5e768d94cffd..e674c9bff65a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "84", "Content-Type": "application/json", - "traceparent": "00-a47230c531c98d4287967bb8f82353e8-dfbcbcba96f5d144-00", + "traceparent": "00-8dd67b1e99ca9649baf52a3b8b5ebbbb-41730920d7b12744-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "756ea08bb2000c2fa9b35ccc10deb879", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "412", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", + "Content-Length": "247", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point", @@ -64,7 +64,7 @@ ], "Variables": { "RandomSeed": "1865371289", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json index ad28203a3e31..a454d14539c2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-134c44ffa84fad469d8a0c123a1226bf-8b6950ed928c4c49-00", + "traceparent": "00-7114469470d4f442a2870c9548414f28-29ba10db2fa2ea46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d7c46533c9974e93ea4923442227c276", "x-ms-return-client-request-id": "true" @@ -25,9 +26,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "147", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:18 GMT", - "elapsed-time": "2", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -45,7 +46,7 @@ ], "Variables": { "RandomSeed": "1535184382", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json index db74d9f76834..7f6f4f4d4d91 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-f65a8d45d947394fa88e84439937014b-b5a8ad6073ad0d46-00", + "traceparent": "00-cfd8199bc45bed49934d5850286eac8a-5f0220864c22624f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a6de12b3b513c4f1287b9c3f23817176", "x-ms-return-client-request-id": "true" @@ -25,9 +26,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "147", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", - "elapsed-time": "2", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -45,7 +46,7 @@ ], "Variables": { "RandomSeed": "1361948098", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json index 691d0c1fb72f..f6f7a5631b11 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-c80a3398e752df4e94d3c32eb1939b13-3301ad7c044f524e-00", + "traceparent": "00-02cb351d128a83429eda278d59e41666-5d2ce404a535074f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "86b9ad338e485267068298bef2de2881", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "165", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "2", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:14 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -44,7 +45,7 @@ ], "Variables": { "RandomSeed": "1535324533", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json index 4fbac09645eb..4d8a05167537 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-eee2ea554fdf9748a7673bd3fb331e8c-cc6cc980b0afec4e-00", + "traceparent": "00-dfb307ef99458d47b50db0616d8cf4b4-2dba14f3e612184d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e94476538dd86087f12a56d5df48818f", "x-ms-return-client-request-id": "true" @@ -24,8 +25,8 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "165", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", @@ -44,7 +45,7 @@ ], "Variables": { "RandomSeed": "1550951357", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json index 4eebada9f553..e1964a2cf25c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-4ddfaa5048a81040b410b75e82ef200e-a35dcef87df98e4f-00", + "traceparent": "00-78777c4206609e478f2d898abe724975-d89e7c99aea89648-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "17d6ea87f57874a5023da5a7716cdfc4", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "7", + "Content-Length": "278", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point motel", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "1006700618", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json index c16224f0507a..681c535a460c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-8b643b3779d11d418bea4b7e1ba31811-ff6f7f2a66473f4b-00", + "traceparent": "00-9e9e782bdadc474096eea9b403b1c6cb-e0778b7bef05b849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "458ca740932cf39a52f4f2ec3f657f72", "x-ms-return-client-request-id": "true" @@ -23,9 +24,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", + "Content-Length": "278", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "point motel", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "844093790", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json index dc136314bd15..835cdcb7943d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-a81f73b3aff78742bb7dbb1aa960bae3-36d3a1f5af568848-00", + "traceparent": "00-2ee2b4eacf8c1143a2addad37fa0d8e5-cf22f752c6d3a849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ab4bffaddda8bac6d7b9511cd8f62fcf", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "455", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:19 GMT", - "elapsed-time": "8", + "Content-Length": "290", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model suites", @@ -64,7 +64,7 @@ ], "Variables": { "RandomSeed": "1627275835", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json index ead105314cd2..fd0ccee79156 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-50face606069214e89210576ad0cdb7f-14c2b4b309d22142-00", + "traceparent": "00-560037c3c8d3e44483c55a006eeaf7ae-72bd9dadba4d2842-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b82305e141df39207043d960114a3f30", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "455", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", - "elapsed-time": "7", + "Content-Length": "290", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:15 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.AutocompleteItem)", "value": [ { "text": "model suites", @@ -64,7 +64,7 @@ ], "Variables": { "RandomSeed": "1304635693", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json index b048a0d94d81..616c1d7321e3 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-yhhnimrm.search.windows.net/indexes(\u0027wkokfpgs\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-asswviqf.search.windows.net/indexes(\u0027sdandbnq\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "60", "Content-Type": "application/json", - "traceparent": "00-03f11dd3b85c2b4e942ea68d5d2c5719-0dec7c2a6534954c-00", + "traceparent": "00-721027264be8a641b635b8dae6aa2d8e-581c3a6f0f224443-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "cd24350f9ede9fad02bbcf4ea0a9084c", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "241", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:38:00 GMT", - "elapsed-time": "201", + "Content-Length": "81", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:42 GMT", + "elapsed-time": "113", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yhhnimrm.search.windows.net/indexes(\u0027wkokfpgs\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "AQIDBAU=", @@ -50,14 +50,15 @@ } }, { - "RequestUri": "https://azs-net-yhhnimrm.search.windows.net/indexes(\u0027wkokfpgs\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-asswviqf.search.windows.net/indexes(\u0027sdandbnq\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-6d217d12de90494bbf14fd0977f782dd-2abff83352eeb944-00", + "traceparent": "00-08837e0e5efe1649b6e4401a719a6757-d6a5fea665273a46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "154595fd9d885b4732fac00032536feb", "x-ms-return-client-request-id": "true" @@ -66,10 +67,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "131", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:38:02 GMT", - "elapsed-time": "6", + "Content-Length": "22", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:49:44 GMT", + "elapsed-time": "43", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -78,14 +79,18 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yhhnimrm.search.windows.net/indexes(\u0027wkokfpgs\u0027)/$metadata#docs(*)/$entity", "hotelId": "AQIDBAU=" } } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "844862299", - "SearchIndexName": "wkokfpgs", - "SearchServiceName": "azs-net-yhhnimrm" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "sdandbnq", + "SearchServiceName": "azs-net-asswviqf", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json index 34bb16e2fabb..39cac576ec13 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-bhuckwxi.search.windows.net/indexes(\u0027swouexga\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tbwudprp.search.windows.net/indexes(\u0027tswtfbpg\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "60", "Content-Type": "application/json", - "traceparent": "00-bdcb895e19fdd94283cb603a75ef8254-a11dbfcdaeb4014b-00", + "traceparent": "00-a62b0f2a1e9432418265c8c1f6b13b81-de1cb3c4ef2f0849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5530b32662d2a5383c40be830872c390", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "241", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:44:42 GMT", - "elapsed-time": "98", + "Content-Length": "81", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:55:17 GMT", + "elapsed-time": "95", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-bhuckwxi.search.windows.net/indexes(\u0027swouexga\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "AQIDBAU=", @@ -50,14 +50,15 @@ } }, { - "RequestUri": "https://azs-net-bhuckwxi.search.windows.net/indexes(\u0027swouexga\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tbwudprp.search.windows.net/indexes(\u0027tswtfbpg\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-60f77e3ae35dc64081979e3f80682e4a-567d1b3797958446-00", + "traceparent": "00-bd7eb0fccc035245b3ebb81a00e2815b-66219341db634e41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6753fc019934107636cd2198c92e6871", "x-ms-return-client-request-id": "true" @@ -66,10 +67,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "131", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:44:44 GMT", - "elapsed-time": "7", + "Content-Length": "22", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:55:19 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -78,14 +79,18 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-bhuckwxi.search.windows.net/indexes(\u0027swouexga\u0027)/$metadata#docs(*)/$entity", "hotelId": "AQIDBAU=" } } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1260122787", - "SearchIndexName": "swouexga", - "SearchServiceName": "azs-net-bhuckwxi" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "tswtfbpg", + "SearchServiceName": "azs-net-tbwudprp", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json index 1eb44a749e66..cf6fb01bcadd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jbsukfmv.search.windows.net/indexes(\u0027nmlauecq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lsnrvucq.search.windows.net/indexes(\u0027iwchpycu\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "117", "Content-Type": "application/json", - "traceparent": "00-897bf7225516fc4f8cf49bdcc527bb83-ee0994233b210646-00", + "traceparent": "00-436cd01e0eb0b84d8e574fef690b460e-c2dd12309b1f6440-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f2dea44eafbfa4b6ba735f3c93646f5e", "x-ms-return-client-request-id": "true" @@ -32,10 +33,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:38:28 GMT", - "elapsed-time": "153", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:50:10 GMT", + "elapsed-time": "127", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -44,7 +45,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jbsukfmv.search.windows.net/indexes(\u0027nmlauecq\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -56,14 +56,15 @@ } }, { - "RequestUri": "https://azs-net-jbsukfmv.search.windows.net/indexes(\u0027nmlauecq\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lsnrvucq.search.windows.net/indexes(\u0027iwchpycu\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-6543acbb1175b5469e56d92debef0e11-719a49b88af4ba45-00", + "traceparent": "00-6aa60022543f2b4f84008ac415d1abea-4e91ead5dce97245-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9dfd77cc8a89de6cb092c4d1b6f43b5e", "x-ms-return-client-request-id": "true" @@ -72,10 +73,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "188", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:38:31 GMT", - "elapsed-time": "32", + "Content-Length": "79", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:50:13 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -84,7 +85,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jbsukfmv.search.windows.net/indexes(\u0027nmlauecq\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "2015-02-11T12:58:00Z", "rooms": [ @@ -96,8 +96,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1073368072", - "SearchIndexName": "nmlauecq", - "SearchServiceName": "azs-net-jbsukfmv" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "iwchpycu", + "SearchServiceName": "azs-net-lsnrvucq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json index 86f6794862be..4d6fe238cdfd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-icgbtjqx.search.windows.net/indexes(\u0027fmdkgcxp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vnpgitgs.search.windows.net/indexes(\u0027bbvfeath\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "117", "Content-Type": "application/json", - "traceparent": "00-7bf04a914e002341aaae1b7cae8f0a50-f57a526debd6ad46-00", + "traceparent": "00-179ba963ce5f7f4dbefbdd1a2b109fd8-bbb07c5308d31947-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2fc6adffe4b6d5f88c266573078647dc", "x-ms-return-client-request-id": "true" @@ -32,10 +33,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:45:10 GMT", - "elapsed-time": "174", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:55:45 GMT", + "elapsed-time": "119", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -44,7 +45,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-icgbtjqx.search.windows.net/indexes(\u0027fmdkgcxp\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -56,14 +56,15 @@ } }, { - "RequestUri": "https://azs-net-icgbtjqx.search.windows.net/indexes(\u0027fmdkgcxp\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vnpgitgs.search.windows.net/indexes(\u0027bbvfeath\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c24bdad4aebdda49b8df8adb4c7e86dc-291d2783e69f224a-00", + "traceparent": "00-9ca81a6bbb74b54f95b29413ceaa48be-ac31df04ea0ae74d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "445154a46aeeea75e714de162175d29b", "x-ms-return-client-request-id": "true" @@ -72,10 +73,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "188", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:45:13 GMT", - "elapsed-time": "8", + "Content-Length": "79", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:55:46 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -84,7 +85,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-icgbtjqx.search.windows.net/indexes(\u0027fmdkgcxp\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "2015-02-11T12:58:00Z", "rooms": [ @@ -96,8 +96,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "815861156", - "SearchIndexName": "fmdkgcxp", - "SearchServiceName": "azs-net-icgbtjqx" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "bbvfeath", + "SearchServiceName": "azs-net-vnpgitgs", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json index a5363acd85a7..8384ef17a891 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jxlhdehv.search.windows.net/indexes(\u0027fwryonvg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-nerxivma.search.windows.net/indexes(\u0027lmejkojl\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "153", "Content-Type": "application/json", - "traceparent": "00-ff2fcdf159284c4a940fa912e8012ecb-9b90a8ec2bc92a48-00", + "traceparent": "00-107dbe6c4d13844faed5d903b6c43b78-8aabe24e27152240-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3cd4b4d13a707d1c9a15802c84f31845", "x-ms-return-client-request-id": "true" @@ -36,10 +37,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:38:59 GMT", - "elapsed-time": "187", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:50:38 GMT", + "elapsed-time": "178", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -48,7 +49,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jxlhdehv.search.windows.net/indexes(\u0027fwryonvg\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -60,14 +60,15 @@ } }, { - "RequestUri": "https://azs-net-jxlhdehv.search.windows.net/indexes(\u0027fwryonvg\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-nerxivma.search.windows.net/indexes(\u0027lmejkojl\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7422db4c50a5fd4eaa004a86c77c2a4d-79e460f1097ac441-00", + "traceparent": "00-05084de99d9453488b9d2fa157612d75-a1664d4bacf0b148-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "25023fe79da338161865932bea9979d1", "x-ms-return-client-request-id": "true" @@ -76,10 +77,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "412", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:39:01 GMT", - "elapsed-time": "11", + "Content-Length": "303", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:50:40 GMT", + "elapsed-time": "28", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -88,7 +89,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jxlhdehv.search.windows.net/indexes(\u0027fwryonvg\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "rooms": [ { @@ -116,8 +116,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "315955367", - "SearchIndexName": "fwryonvg", - "SearchServiceName": "azs-net-jxlhdehv" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lmejkojl", + "SearchServiceName": "azs-net-nerxivma", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json index e3ae9206fded..6f0ab40eae5a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-nmjaqsel.search.windows.net/indexes(\u0027qqfkqbly\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jqlexfiq.search.windows.net/indexes(\u0027ehftxshv\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "153", "Content-Type": "application/json", - "traceparent": "00-f779687a3688554ca44c0951494ea296-e5a4e7df7a97fe48-00", + "traceparent": "00-b33fd100782f394e8e999d272541855d-6ebccd330e027349-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "71ed97ceae159e6a0e532497e039d77d", "x-ms-return-client-request-id": "true" @@ -36,10 +37,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:45:39 GMT", - "elapsed-time": "108", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:56:11 GMT", + "elapsed-time": "97", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -48,7 +49,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-nmjaqsel.search.windows.net/indexes(\u0027qqfkqbly\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -60,14 +60,15 @@ } }, { - "RequestUri": "https://azs-net-nmjaqsel.search.windows.net/indexes(\u0027qqfkqbly\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jqlexfiq.search.windows.net/indexes(\u0027ehftxshv\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c5195ec1371b44408a9e3440787eefbc-a729d944e695544a-00", + "traceparent": "00-554e6fa2684a2e41a074abe1abfb5f67-33f8595ee2acdc46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "15e44950bf432eb7b3a770fb7c6a0521", "x-ms-return-client-request-id": "true" @@ -76,10 +77,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "412", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:45:40 GMT", - "elapsed-time": "10", + "Content-Length": "303", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:56:14 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -88,7 +89,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-nmjaqsel.search.windows.net/indexes(\u0027qqfkqbly\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "rooms": [ { @@ -116,8 +116,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "169067094", - "SearchIndexName": "qqfkqbly", - "SearchServiceName": "azs-net-nmjaqsel" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ehftxshv", + "SearchServiceName": "azs-net-jqlexfiq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json index 34182fa69a05..fbed489abd53 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-hsoabuct.search.windows.net/indexes(\u0027tlavbrqr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-qbnlufne.search.windows.net/indexes(\u0027qboxfjos\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-bec0d8fc8cef2b46abaa2cbe20a627b8-1c6a2537efdb1c4a-00", + "traceparent": "00-959c5c27fcb2c6459f4c838a10eb14e0-5a6064902f6f6a4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "696bce3f9eebe5daac4334cbc92301b1", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:39:29 GMT", - "elapsed-time": "411", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:51:05 GMT", + "elapsed-time": "221", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hsoabuct.search.windows.net/indexes(\u0027tlavbrqr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-hsoabuct.search.windows.net/indexes(\u0027tlavbrqr\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-qbnlufne.search.windows.net/indexes(\u0027qboxfjos\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-34c90bfc935e6e47aed25e64a5166ddb-2c9cfca73fe9b548-00", + "traceparent": "00-d18a7f835ef96f4e87c2b150497f47fd-ca88d95aec7b1941-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c7657cc6bb194bb27b6bca53df51a5f0", "x-ms-return-client-request-id": "true" @@ -67,9 +68,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "223", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:39:31 GMT", + "Content-Length": "114", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:51:07 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hsoabuct.search.windows.net/indexes(\u0027tlavbrqr\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "address": { "streetAddress": null, @@ -92,8 +92,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "2066000977", - "SearchIndexName": "tlavbrqr", - "SearchServiceName": "azs-net-hsoabuct" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "qboxfjos", + "SearchServiceName": "azs-net-qbnlufne", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json index 5505120438f0..85fafef276c7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qprdqwhq.search.windows.net/indexes(\u0027qwvxtmbq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wwqkqsaa.search.windows.net/indexes(\u0027uetcslks\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-6d1954d33cd8e6439f74b3fac61542cb-717cab9941dcb048-00", + "traceparent": "00-e498072413e9ee4e8774c1d9ac158739-bb92c0b9a68f2444-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "65ce64a43b09e542be789e2294642d15", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:46:09 GMT", - "elapsed-time": "76", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:56:40 GMT", + "elapsed-time": "134", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qprdqwhq.search.windows.net/indexes(\u0027qwvxtmbq\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-qprdqwhq.search.windows.net/indexes(\u0027qwvxtmbq\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wwqkqsaa.search.windows.net/indexes(\u0027uetcslks\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a8299953236c974dac602f2386261ff6-1c80773e44822d42-00", + "traceparent": "00-c706ce1dab16884fbb90b4fd837c9412-8434003fd944724d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e998569315e4c42115fc8da4a7e10726", "x-ms-return-client-request-id": "true" @@ -67,9 +68,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "223", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:46:10 GMT", + "Content-Length": "114", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:56:42 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qprdqwhq.search.windows.net/indexes(\u0027qwvxtmbq\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "address": { "streetAddress": null, @@ -92,8 +92,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "399190745", - "SearchIndexName": "qwvxtmbq", - "SearchServiceName": "azs-net-qprdqwhq" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "uetcslks", + "SearchServiceName": "azs-net-wwqkqsaa", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json index 6641a6846725..bcfd172917a8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ixbgexof.search.windows.net/indexes(\u0027twpmmnga\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-beyxiohp.search.windows.net/indexes(\u0027fngiqrgt\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-26c6cca511112645848446d9f1de05c5-8ba918ce51dad24e-00", + "traceparent": "00-c42d1a0780457a4c90a460cef5bf2099-5f5aec6350b18e4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "41298b33ba87801183d4e63a5116f18c", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:40:00 GMT", - "elapsed-time": "359", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:51:33 GMT", + "elapsed-time": "92", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ixbgexof.search.windows.net/indexes(\u0027twpmmnga\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-ixbgexof.search.windows.net/indexes(\u0027twpmmnga\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-beyxiohp.search.windows.net/indexes(\u0027fngiqrgt\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-9da37d8534345141ac0895adc0229beb-c5c912b6f8488243-00", + "traceparent": "00-e57bd0f61bdabc4ab8b3023ed4255d96-e9d32497cf7d794d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9d0cb48abffadd494c0801195f598b73", "x-ms-return-client-request-id": "true" @@ -67,9 +68,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "418", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:40:02 GMT", + "Content-Length": "309", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:51:35 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ixbgexof.search.windows.net/indexes(\u0027twpmmnga\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -103,8 +103,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1573078829", - "SearchIndexName": "twpmmnga", - "SearchServiceName": "azs-net-ixbgexof" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "fngiqrgt", + "SearchServiceName": "azs-net-beyxiohp", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json index 44fb58c9d897..0f00e162cbd6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-yxgqogio.search.windows.net/indexes(\u0027xukdefhd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xpknokhp.search.windows.net/indexes(\u0027fxbanlth\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-d4cc6f7cb08c4248bf915b1136b78746-2cda60f3358b3446-00", + "traceparent": "00-2d37ac2f0a217042ac94adf8293f5939-8d6b69243c9e7f43-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1f0de7652762769c327cfd51bc3fd759", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:46:37 GMT", - "elapsed-time": "96", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:10 GMT", + "elapsed-time": "176", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yxgqogio.search.windows.net/indexes(\u0027xukdefhd\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-yxgqogio.search.windows.net/indexes(\u0027xukdefhd\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xpknokhp.search.windows.net/indexes(\u0027fxbanlth\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-8b191ee087ec2844ad666a91574d4738-b3ac7f839131d544-00", + "traceparent": "00-f39c5cb99e8cd04185c6c269b688d762-c46b0887222c6046-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e5585d15760ad5fc6d7f7db317c1f906", "x-ms-return-client-request-id": "true" @@ -67,10 +68,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "418", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:46:39 GMT", - "elapsed-time": "8", + "Content-Length": "309", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:12 GMT", + "elapsed-time": "14", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yxgqogio.search.windows.net/indexes(\u0027xukdefhd\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -103,8 +103,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "996781470", - "SearchIndexName": "xukdefhd", - "SearchServiceName": "azs-net-yxgqogio" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "fxbanlth", + "SearchServiceName": "azs-net-xpknokhp", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json index 4068cde1eb01..75aa3161cd70 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-pfrbpcon.search.windows.net/indexes(\u0027vqnrdktn\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mqpnkpyi.search.windows.net/indexes(\u0027qmghgntb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "271", "Content-Type": "application/json", - "traceparent": "00-057b47bdcb179f4588e1e90986a2dfbe-bfba068952fb3b4b-00", + "traceparent": "00-1ecec7e2b853df41afcf2958f21f72a8-e83ecbd1304aa04b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b9574961c9aa760b31d6c385b198a1df", "x-ms-return-client-request-id": "true" @@ -42,10 +43,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:40:31 GMT", - "elapsed-time": "235", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:00 GMT", + "elapsed-time": "129", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -54,7 +55,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-pfrbpcon.search.windows.net/indexes(\u0027vqnrdktn\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -66,14 +66,15 @@ } }, { - "RequestUri": "https://azs-net-pfrbpcon.search.windows.net/indexes(\u0027vqnrdktn\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mqpnkpyi.search.windows.net/indexes(\u0027qmghgntb\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-5bcfbb2c80712241a0add005e0e7e79c-633ed4ea225ae045-00", + "traceparent": "00-a1919c49045afc49afed16a5e0eea7b0-1b135b2fa61d2a40-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "86d67118a7e903c06716cf2467397648", "x-ms-return-client-request-id": "true" @@ -82,10 +83,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "472", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:40:33 GMT", - "elapsed-time": "12", + "Content-Length": "363", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:02 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -94,7 +95,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-pfrbpcon.search.windows.net/indexes(\u0027vqnrdktn\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -123,8 +123,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "414325153", - "SearchIndexName": "vqnrdktn", - "SearchServiceName": "azs-net-pfrbpcon" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "qmghgntb", + "SearchServiceName": "azs-net-mqpnkpyi", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json index 9c19d188e7c0..8cb94a5de805 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-bdsqkuxp.search.windows.net/indexes(\u0027fritwgqd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tyhhiipq.search.windows.net/indexes(\u0027qljtlgxr\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "271", "Content-Type": "application/json", - "traceparent": "00-91b8729885f285429ff552ec8a5d5eec-5c5f83f17ca04e45-00", + "traceparent": "00-8788873298ea724eaf687bab9d93a857-73f65c5948ef2d49-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8593d425c542ce638f3cf3385e65346d", "x-ms-return-client-request-id": "true" @@ -42,10 +43,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:47:04 GMT", - "elapsed-time": "112", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:39 GMT", + "elapsed-time": "95", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -54,7 +55,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-bdsqkuxp.search.windows.net/indexes(\u0027fritwgqd\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -66,14 +66,15 @@ } }, { - "RequestUri": "https://azs-net-bdsqkuxp.search.windows.net/indexes(\u0027fritwgqd\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tyhhiipq.search.windows.net/indexes(\u0027qljtlgxr\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-43704f8c0b0dd846acaa1093bdd1a654-e3e711eb8117fa4c-00", + "traceparent": "00-56c2ec41fdb9c54f80c61e007c73aeb6-b3f3350ecb7c4c42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e69a2eb12a8de32e2d979df23babf734", "x-ms-return-client-request-id": "true" @@ -82,10 +83,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "472", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:47:06 GMT", - "elapsed-time": "11", + "Content-Length": "363", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:41 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -94,7 +95,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-bdsqkuxp.search.windows.net/indexes(\u0027fritwgqd\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -123,8 +123,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1106232816", - "SearchIndexName": "fritwgqd", - "SearchServiceName": "azs-net-bdsqkuxp" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "qljtlgxr", + "SearchServiceName": "azs-net-tyhhiipq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json index 013a71f2f286..29174add6a29 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-269e876d1c8ede4fa49c81a7b1a44cfa-e3b429f14b62934c-00", + "traceparent": "00-1a172bb0afdbc640a471d4145033aef9-c2552807266c8a40-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "799b1890cb46f19f37ea469782ee6797", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:41:02 GMT", - "elapsed-time": "107", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:05 GMT", + "elapsed-time": "64", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "1106318049", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json index a8c5e1d11e1b..7cee655c5e93 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c1f65de6796b0e469a4d3bd9dcd0ed29-5b7e73e3045dd049-00", + "traceparent": "00-d601c07972eb2f489fda84a76f8bf0ee-649418b0e4b17342-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b12bf8433d0f2619d56f5cefa1b09e5f", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:47:08 GMT", - "elapsed-time": "142", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:42 GMT", + "elapsed-time": "56", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "554905365", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json index 90f7aa66f3ec..45f837b2ce82 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-40d8f0d3d84ccd4c867056f5a3a73b6f-f4b6561601ea934f-00", + "traceparent": "00-98025e58339e2f429658ab58f5c04b30-2a6597dfc1e0674d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b7677ebc93077dafb12861726e72bf67", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:41:02 GMT", - "elapsed-time": "3", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:05 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "269565640", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json index 30b8405a73eb..efb483f3c06c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a08c5d03a36a9840b51af755e742ddf3-bec66b5aef3ccb4b-00", + "traceparent": "00-c4ec48c60dfdea46a76ce3c6864d50ce-9d048c801671584f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "059dc47a80330299d7595e2dd473e120", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:47:08 GMT", - "elapsed-time": "5", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:42 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "307443657", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json index 7dd5b768477e..db8d7bb7e2c0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2894bb883eed014697c630ee5fc57daa-a16bdd6eceafdc4f-00", + "traceparent": "00-ef452daf2b953a49aea311b3de180fb8-4543b25df6a05e4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bf19f813f46341823350123eaadb38c7", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:41:02 GMT", - "elapsed-time": "5", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:05 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "868892207", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json index 0f14e58db251..74608f666221 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a4ab754210381f4ca34e825178caf675-475ef6b5eb40c546-00", + "traceparent": "00-6bc5a827e8d2c24b868df73e3fef7525-23e8fcb8ffbcf045-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a813557250353459f176eb2e3113d05a", "x-ms-return-client-request-id": "true" @@ -17,9 +18,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:47:08 GMT", + "Content-Length": "326", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:57:43 GMT", "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", @@ -29,7 +30,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": "EconoStay", "description": "Very popular hotel in town", @@ -43,19 +43,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -63,7 +51,7 @@ ], "Variables": { "RandomSeed": "2141683884", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json index f14d32f259e2..e5dbb94cf033 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eafvyocf.search.windows.net/indexes(\u0027jmjmjvbi\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wkhfokcb.search.windows.net/indexes(\u0027txghyenx\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1018", "Content-Type": "application/json", - "traceparent": "00-c33e2be5b0e94e4594fe756c216340b0-7ced3380c91f9943-00", + "traceparent": "00-3fa519318926094f9744f0e367487816-d4e1b9ca436a874b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "26a6f1d5a3b239468a59914d90ca500b", "x-ms-return-client-request-id": "true" @@ -55,10 +56,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:41:28 GMT", - "elapsed-time": "116", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:30 GMT", + "elapsed-time": "97", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -67,7 +68,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eafvyocf.search.windows.net/indexes(\u0027jmjmjvbi\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -79,14 +79,15 @@ } }, { - "RequestUri": "https://azs-net-eafvyocf.search.windows.net/indexes(\u0027jmjmjvbi\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wkhfokcb.search.windows.net/indexes(\u0027txghyenx\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-5ef5c262bd50da489b15fb121c86fb1b-0c571d5489230341-00", + "traceparent": "00-4247c859caa24942a2c7e5881373c3a6-6b2a501ae2b19f4c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5d990c2a343c51ee5341d72213255f52", "x-ms-return-client-request-id": "true" @@ -95,9 +96,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1049", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:41:30 GMT", + "Content-Length": "940", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:32 GMT", "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", @@ -107,7 +108,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eafvyocf.search.windows.net/indexes(\u0027jmjmjvbi\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Fancy Stay", "description": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -142,8 +142,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1347817798", - "SearchIndexName": "jmjmjvbi", - "SearchServiceName": "azs-net-eafvyocf" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "txghyenx", + "SearchServiceName": "azs-net-wkhfokcb", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json index 49f0408ae91a..ef069278de6a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ookruukk.search.windows.net/indexes(\u0027gcfvmeml\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wluihshl.search.windows.net/indexes(\u0027obfrqyli\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1018", "Content-Type": "application/json", - "traceparent": "00-f1152a5269c5e14d80037b7b78ddc922-c3993ba41dad2c44-00", + "traceparent": "00-b26e77afc6bdfd4aa5f3e8d2cb73cb06-31d3549fcbb0714f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8363316349f54d2b909cd08d181068ae", "x-ms-return-client-request-id": "true" @@ -55,10 +56,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:47:32 GMT", - "elapsed-time": "92", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:58:08 GMT", + "elapsed-time": "168", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -67,7 +68,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ookruukk.search.windows.net/indexes(\u0027gcfvmeml\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -79,14 +79,15 @@ } }, { - "RequestUri": "https://azs-net-ookruukk.search.windows.net/indexes(\u0027gcfvmeml\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wluihshl.search.windows.net/indexes(\u0027obfrqyli\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c409715dc910a240948a9213fad70a8f-623b27650eec7a43-00", + "traceparent": "00-7075f29924ab984e808863505b3db08b-f6051a88a7a63242-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ce0b4ac00085d030f1ea2ddc1d5a427d", "x-ms-return-client-request-id": "true" @@ -95,10 +96,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1049", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:47:34 GMT", - "elapsed-time": "9", + "Content-Length": "940", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:58:10 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -107,7 +108,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ookruukk.search.windows.net/indexes(\u0027gcfvmeml\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Fancy Stay", "description": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -142,8 +142,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1375466831", - "SearchIndexName": "gcfvmeml", - "SearchServiceName": "azs-net-ookruukk" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "obfrqyli", + "SearchServiceName": "azs-net-wluihshl", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json index 69a4f120c0cf..d9b92e3b86c3 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ccfmvpmb.search.windows.net/indexes(\u0027diwhvjig\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ttkotaik.search.windows.net/indexes(\u0027eqhviaiq\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "879", "Content-Type": "application/json", - "traceparent": "00-5d717524e5375d47b2abe87bdc02e534-56e0f5cc409eee49-00", + "traceparent": "00-8d4fe0acfbcd5e4eaa5bc59dc1c58319-b3ef222d7ce66a45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "45bd018deeee3a730ce795272c4bd29b", "x-ms-return-client-request-id": "true" @@ -42,10 +43,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:41:57 GMT", - "elapsed-time": "150", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:52:57 GMT", + "elapsed-time": "95", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -54,7 +55,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ccfmvpmb.search.windows.net/indexes(\u0027diwhvjig\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -66,14 +66,15 @@ } }, { - "RequestUri": "https://azs-net-ccfmvpmb.search.windows.net/indexes(\u0027diwhvjig\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ttkotaik.search.windows.net/indexes(\u0027eqhviaiq\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2716fbb7fed420419ad33d3d24100305-e208009ffc876b43-00", + "traceparent": "00-e515e52007e90843a2e28956ac2d63a9-83e9468927c6bf48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2325cd1bf6fe19b379554259e2158a89", "x-ms-return-client-request-id": "true" @@ -82,10 +83,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "943", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:41:59 GMT", - "elapsed-time": "7", + "Content-Length": "834", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:53:00 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -94,7 +95,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ccfmvpmb.search.windows.net/indexes(\u0027diwhvjig\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Fancy Stay", "description": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -117,8 +117,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "433827026", - "SearchIndexName": "diwhvjig", - "SearchServiceName": "azs-net-ccfmvpmb" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "eqhviaiq", + "SearchServiceName": "azs-net-ttkotaik", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json index 0ee3c361b5fa..00e1f1a8554e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-orwqtkfe.search.windows.net/indexes(\u0027aplwxoqr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jlhsecko.search.windows.net/indexes(\u0027ytwdbndx\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "879", "Content-Type": "application/json", - "traceparent": "00-d991d5920064d9499f7682fd544d5ede-2b3cf3fec028a24c-00", + "traceparent": "00-a483996683d1f54aaf6c9c7638040512-91d46ace515d9a49-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "aa5f713be58bf17803b0715e17f2aff2", "x-ms-return-client-request-id": "true" @@ -42,10 +43,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:48:00 GMT", - "elapsed-time": "117", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:58:37 GMT", + "elapsed-time": "139", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -54,7 +55,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-orwqtkfe.search.windows.net/indexes(\u0027aplwxoqr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -66,14 +66,15 @@ } }, { - "RequestUri": "https://azs-net-orwqtkfe.search.windows.net/indexes(\u0027aplwxoqr\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jlhsecko.search.windows.net/indexes(\u0027ytwdbndx\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-1331560f25f2a0488526e2c2be133708-45806617c51d1f45-00", + "traceparent": "00-76a154a7d4ce9c4c9d891f1c26dca3a1-90ff4e7d615e0849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "93de715e8cce15b225b9af5b7103eb25", "x-ms-return-client-request-id": "true" @@ -82,10 +83,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "943", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:48:03 GMT", - "elapsed-time": "10", + "Content-Length": "834", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:58:39 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -94,7 +95,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-orwqtkfe.search.windows.net/indexes(\u0027aplwxoqr\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Fancy Stay", "description": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -117,8 +117,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1353165967", - "SearchIndexName": "aplwxoqr", - "SearchServiceName": "azs-net-orwqtkfe" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ytwdbndx", + "SearchServiceName": "azs-net-jlhsecko", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json index 162b361c137a..f6ed6d440cc1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jhmdfxnq.search.windows.net/indexes(\u0027wkhafnyh\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-sekfjafc.search.windows.net/indexes(\u0027ontmjrjl\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "278", "Content-Type": "application/json", - "traceparent": "00-fab3ae741d822f4ebca6f5c0462e68f8-70d3f0d2c332c849-00", + "traceparent": "00-ab93110254bf96408ffcb26ad9ff18c8-49b61a75a5bf5d40-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f7a4c22c78dddacfb1d808b89b0aec32", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:42:25 GMT", - "elapsed-time": "165", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:53:25 GMT", + "elapsed-time": "117", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jhmdfxnq.search.windows.net/indexes(\u0027wkhafnyh\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -61,14 +61,15 @@ } }, { - "RequestUri": "https://azs-net-jhmdfxnq.search.windows.net/indexes(\u0027wkhafnyh\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-sekfjafc.search.windows.net/indexes(\u0027ontmjrjl\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-0f9540c001b5f34c8a729188047a9eca-0934b91e2dbfaa47-00", + "traceparent": "00-e86fa5c572c6ef4eabce3bec6dcbfc64-1f309f422a755f4e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "fd0641a31eab57b430547fefdad08e0b", "x-ms-return-client-request-id": "true" @@ -77,10 +78,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "352", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:42:27 GMT", - "elapsed-time": "6", + "Content-Length": "243", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:53:27 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -89,7 +90,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jhmdfxnq.search.windows.net/indexes(\u0027wkhafnyh\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -107,8 +107,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "514352695", - "SearchIndexName": "wkhafnyh", - "SearchServiceName": "azs-net-jhmdfxnq" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ontmjrjl", + "SearchServiceName": "azs-net-sekfjafc", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json index 8716f78019d4..e617af05940f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-dgnptpig.search.windows.net/indexes(\u0027sijhobda\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ajdcpkyb.search.windows.net/indexes(\u0027rushdxyr\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "278", "Content-Type": "application/json", - "traceparent": "00-30feed2fb3c20a449d92869811068579-2a9663f8bb0f9046-00", + "traceparent": "00-75f94075eaf5104c9002df8e88383ae9-d932691a5d16af4c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "90ea827e2f761f83ac770431dcd23fc1", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:48:28 GMT", - "elapsed-time": "104", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:59:06 GMT", + "elapsed-time": "102", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-dgnptpig.search.windows.net/indexes(\u0027sijhobda\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -61,14 +61,15 @@ } }, { - "RequestUri": "https://azs-net-dgnptpig.search.windows.net/indexes(\u0027sijhobda\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ajdcpkyb.search.windows.net/indexes(\u0027rushdxyr\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-36a4da585b3d8143882ce593513f568c-0ba9cba32de92f47-00", + "traceparent": "00-cedda63f010e4c4885a91f61ca43fc9b-90236e1366f91044-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "26d08ddb6c66331f89a7e6eef9859689", "x-ms-return-client-request-id": "true" @@ -77,10 +78,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "352", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:48:30 GMT", - "elapsed-time": "9", + "Content-Length": "243", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:59:08 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -89,7 +90,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-dgnptpig.search.windows.net/indexes(\u0027sijhobda\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -107,8 +107,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "144595203", - "SearchIndexName": "sijhobda", - "SearchServiceName": "azs-net-dgnptpig" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "rushdxyr", + "SearchServiceName": "azs-net-ajdcpkyb", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json index 471c9a18ae13..e7c51846e373 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gwbcjtjo.search.windows.net/indexes(\u0027merpqujy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ximmdfhv.search.windows.net/indexes(\u0027cwawcfss\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "608", "Content-Type": "application/json", - "traceparent": "00-965376d3452323458e78fdd46da74d1c-438e6687b3365042-00", + "traceparent": "00-bd2c0b0a328be14890467d9e7952a4d2-b609e1d4fbfb6447-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ba72cae48d6b18784cff3b464ee836d8", "x-ms-return-client-request-id": "true" @@ -64,10 +65,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:42:54 GMT", - "elapsed-time": "122", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:53:53 GMT", + "elapsed-time": "128", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -76,7 +77,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gwbcjtjo.search.windows.net/indexes(\u0027merpqujy\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -88,14 +88,15 @@ } }, { - "RequestUri": "https://azs-net-gwbcjtjo.search.windows.net/indexes(\u0027merpqujy\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ximmdfhv.search.windows.net/indexes(\u0027cwawcfss\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-9c4ad692ac3662428fd4dacd7fb47391-1706c7921e63924c-00", + "traceparent": "00-2b414f299eef8241823b7c98b0b2b9ba-94f747dcac2ca249-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "798ede94329eb9a297a83d07640f2343", "x-ms-return-client-request-id": "true" @@ -104,10 +105,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "695", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:42:56 GMT", - "elapsed-time": "10", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:53:55 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -116,7 +117,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gwbcjtjo.search.windows.net/indexes(\u0027merpqujy\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -161,8 +161,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "226392841", - "SearchIndexName": "merpqujy", - "SearchServiceName": "azs-net-gwbcjtjo" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "cwawcfss", + "SearchServiceName": "azs-net-ximmdfhv", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json index 2c24408e36b2..279ee79b0067 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-fweejaje.search.windows.net/indexes(\u0027igreinmr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-abjyxent.search.windows.net/indexes(\u0027bginveka\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "608", "Content-Type": "application/json", - "traceparent": "00-787498745915784eab50b66b8ffee1f0-4c98646e7fc5b540-00", + "traceparent": "00-566b782e6b7f9e4c83ed79a50766d498-22015d0632ded14a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2e413dc21dec5a9ca767cde11dd6490b", "x-ms-return-client-request-id": "true" @@ -64,10 +65,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:48:58 GMT", - "elapsed-time": "119", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:59:33 GMT", + "elapsed-time": "85", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -76,7 +77,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fweejaje.search.windows.net/indexes(\u0027igreinmr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -88,14 +88,15 @@ } }, { - "RequestUri": "https://azs-net-fweejaje.search.windows.net/indexes(\u0027igreinmr\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-abjyxent.search.windows.net/indexes(\u0027bginveka\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-6ccdc7161f32f64bac01f28a99409662-22604a659248d24b-00", + "traceparent": "00-8873ffcaa7ca4749a3cb191fe62b88b3-0c410410b7fab94f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "cb53b580bced7b11d26d24c4ff60a775", "x-ms-return-client-request-id": "true" @@ -104,10 +105,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "695", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:49:00 GMT", - "elapsed-time": "12", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:59:35 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -116,7 +117,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fweejaje.search.windows.net/indexes(\u0027igreinmr\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -161,8 +161,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "136068368", - "SearchIndexName": "igreinmr", - "SearchServiceName": "azs-net-fweejaje" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "bginveka", + "SearchServiceName": "azs-net-abjyxent", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json index 27ec05b0f6c8..c643399da64c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-edcbiwde.search.windows.net/indexes(\u0027nnpkimvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ooottint.search.windows.net/indexes(\u0027oiaggubm\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "77", "Content-Type": "application/json", - "traceparent": "00-a6d2f53da6a60140b594396723f38810-f2516a3ded49dc47-00", + "traceparent": "00-10c2cdb99d0f244eb4ab5b573003085e-b636f7d3a9ebc44c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "eb3f3216b0de1bf6125f047abab79f2a", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:43:42 GMT", - "elapsed-time": "101", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:54:20 GMT", + "elapsed-time": "127", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-edcbiwde.search.windows.net/indexes(\u0027nnpkimvp\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "4", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-edcbiwde.search.windows.net/indexes(\u0027nnpkimvp\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ooottint.search.windows.net/indexes(\u0027oiaggubm\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-059176eb8377534ebef9820debcdffc1-a26b0fb9161bb64b-00", + "traceparent": "00-85cf3353e525204ca8f5757c701892c0-6e516c910bbc1d43-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "616d0353a8077dbe8775e6cb950c62f3", "x-ms-return-client-request-id": "true" @@ -67,10 +68,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "341", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:43:45 GMT", - "elapsed-time": "8", + "Content-Length": "232", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:54:23 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-edcbiwde.search.windows.net/indexes(\u0027nnpkimvp\u0027)/$metadata#docs(*)/$entity", "hotelId": "4", "hotelName": "Value Inn", "description": null, @@ -97,8 +97,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "10321260", - "SearchIndexName": "nnpkimvp", - "SearchServiceName": "azs-net-edcbiwde" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "oiaggubm", + "SearchServiceName": "azs-net-ooottint", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json index ca1f8ff884ce..cda2ae482ed0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-knsfqvqx.search.windows.net/indexes(\u0027ipwkbwox\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wgrhuirx.search.windows.net/indexes(\u0027lgaijclb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "77", "Content-Type": "application/json", - "traceparent": "00-55e873c3d2abed4a817143f6d960d105-136b0f047f68614c-00", + "traceparent": "00-e91c4e4a037eda459d1533765b3d78cd-65ef0d828f70d241-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f8569a8bc0f887882f6e1e542d8f7ef1", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:49:25 GMT", - "elapsed-time": "201", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:00:02 GMT", + "elapsed-time": "113", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-knsfqvqx.search.windows.net/indexes(\u0027ipwkbwox\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "4", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-knsfqvqx.search.windows.net/indexes(\u0027ipwkbwox\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wgrhuirx.search.windows.net/indexes(\u0027lgaijclb\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-db3a960cc542554698724ee45ca2733d-4ceedb31cb4a1c47-00", + "traceparent": "00-f1c449984b71dc4284c6ac86b6b9a96e-63e83ac66b1e3940-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "08f24fcba546d2cdd5e339e31a9cdc02", "x-ms-return-client-request-id": "true" @@ -67,10 +68,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "341", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:49:27 GMT", - "elapsed-time": "8", + "Content-Length": "232", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:00:04 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -79,7 +80,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-knsfqvqx.search.windows.net/indexes(\u0027ipwkbwox\u0027)/$metadata#docs(*)/$entity", "hotelId": "4", "hotelName": "Value Inn", "description": null, @@ -97,8 +97,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1461814314", - "SearchIndexName": "ipwkbwox", - "SearchServiceName": "azs-net-knsfqvqx" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lgaijclb", + "SearchServiceName": "azs-net-wgrhuirx", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json index a7e7ec0a45ab..311c1e4939e1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f9f1388ca3091b47a381f952fd69e5d2-3963695f35bc6b4a-00", + "traceparent": "00-6fc765060fa29b4cb7fd3ebe41a86cec-a736b1e679e88849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c1ac8ecf967c99f1d9fe44cf54d99bb0", "x-ms-return-client-request-id": "true" @@ -19,9 +20,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "163", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:43:47 GMT", - "elapsed-time": "92", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:54:25 GMT", + "elapsed-time": "63", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,7 @@ ], "Variables": { "RandomSeed": "1662283179", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json index 79da87364d6e..b8c223bc0575 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b14b992d63bcaf41aca60b9f83af285b-bf917db1fd39014c-00", + "traceparent": "00-31debaa02bbfe341be0af6c82cc26522-db845a749108c84c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bb82e378638212a3a45f376d050084d6", "x-ms-return-client-request-id": "true" @@ -19,9 +20,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "163", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:49:31 GMT", - "elapsed-time": "166", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:00:07 GMT", + "elapsed-time": "56", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,7 @@ ], "Variables": { "RandomSeed": "335380653", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json index e0674dd10228..d7b3acba13c9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ed607f3a7f6a784d85dc2accd900050d-71144f33f1a3be4f-00", + "traceparent": "00-7f667e3fd34218469a0f11e73671cc7c-111e83333cba5342-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ba21e91c66faa803c9d44523eaf36c73", "x-ms-return-client-request-id": "true" @@ -18,8 +19,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 12 Mar 2020 00:43:47 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 00:54:25 GMT", + "elapsed-time": "8", "Expires": "-1", "Pragma": "no-cache", "request-id": "ba21e91c-66fa-a803-c9d4-4523eaf36c73", @@ -30,7 +31,7 @@ ], "Variables": { "RandomSeed": "500232658", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json index df6730fb4a24..80d58d38801c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyqqmobj.search.windows.net/indexes(\u0027eifefphf\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-e7747f6117a3964e82d1eae419efd398-a906d9b344a9e64e-00", + "traceparent": "00-74af12ae1ac20245b2ca9828c52cc966-aaf21f2662d0f743-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "aee8edee2b291e361337583140d47761", "x-ms-return-client-request-id": "true" @@ -18,7 +19,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 12 Mar 2020 00:49:31 GMT", + "Date": "Sat, 25 Apr 2020 01:00:07 GMT", "elapsed-time": "7", "Expires": "-1", "Pragma": "no-cache", @@ -30,7 +31,7 @@ ], "Variables": { "RandomSeed": "447408589", - "SearchIndexName": "eifefphf", - "SearchServiceName": "azs-net-gyqqmobj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json index 4fa6115fbe79..52c806d0b7ec 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jpayifwp.search.windows.net/indexes(\u0027xxqafxyc\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-hvwymvnm.search.windows.net/indexes(\u0027wndmyhyi\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1384", "Content-Type": "application/json", - "traceparent": "00-469d7fafaabec4438ada87bb953d4d5a-5750db60bb627246-00", + "traceparent": "00-f5d0c99a9446944a9f5fa31dc7f2a91a-bf9aa20852cf2e46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d39c287266957a8ebdbeb57b7564a066", "x-ms-return-client-request-id": "true" @@ -72,10 +73,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:44:12 GMT", - "elapsed-time": "159", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:54:50 GMT", + "elapsed-time": "101", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -84,7 +85,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jpayifwp.search.windows.net/indexes(\u0027xxqafxyc\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "2", @@ -96,14 +96,15 @@ } }, { - "RequestUri": "https://azs-net-jpayifwp.search.windows.net/indexes(\u0027xxqafxyc\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-hvwymvnm.search.windows.net/indexes(\u0027wndmyhyi\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-fd9c850e62ca434eba8a4f9cf20c49b7-7da30583f2114745-00", + "traceparent": "00-c3372490a6872e4480b9aaec93dd7f2b-250e3a4d9d7c584e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3837244195ad9b6302a4eb63dab94f32", "x-ms-return-client-request-id": "true" @@ -112,10 +113,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:44:14 GMT", - "elapsed-time": "18", + "Content-Length": "288", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 00:54:52 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -124,7 +125,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jpayifwp.search.windows.net/indexes(\u0027xxqafxyc\u0027)/$metadata#docs(*)/$entity", "hotelName": "Countryside Hotel", "description": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", "address": { @@ -142,8 +142,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1560836648", - "SearchIndexName": "xxqafxyc", - "SearchServiceName": "azs-net-jpayifwp" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "wndmyhyi", + "SearchServiceName": "azs-net-hvwymvnm", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json index 3ceba352716d..82e23905bafc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-mkqajmhd.search.windows.net/indexes(\u0027wjgnxewf\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tfcyedav.search.windows.net/indexes(\u0027ujbjclen\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1384", "Content-Type": "application/json", - "traceparent": "00-4009e7a3e66d3b41b6c4ca2a714886c7-de026b926e345545-00", + "traceparent": "00-b24d986665f30e4bbfd657955bf4118b-05359cae61f68441-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4601d57268f632293dd1260264c08611", "x-ms-return-client-request-id": "true" @@ -72,10 +73,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 00:49:56 GMT", - "elapsed-time": "92", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:00:34 GMT", + "elapsed-time": "172", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -84,7 +85,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-mkqajmhd.search.windows.net/indexes(\u0027wjgnxewf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "2", @@ -96,14 +96,15 @@ } }, { - "RequestUri": "https://azs-net-mkqajmhd.search.windows.net/indexes(\u0027wjgnxewf\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tfcyedav.search.windows.net/indexes(\u0027ujbjclen\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4456addea36d5c4c9cab4d0551549549-08ae4af8f6a9bf43-00", + "traceparent": "00-c3901e5843a08849b7e2b5c2d7af84f4-a2a10b2ff9b96445-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "630df8ec3f929a8179bffcb17ecb2dbb", "x-ms-return-client-request-id": "true" @@ -112,10 +113,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 00:49:58 GMT", - "elapsed-time": "8", + "Content-Length": "288", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:00:36 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -124,7 +125,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-mkqajmhd.search.windows.net/indexes(\u0027wjgnxewf\u0027)/$metadata#docs(*)/$entity", "hotelName": "Countryside Hotel", "description": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", "address": { @@ -142,8 +142,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "495263731", - "SearchIndexName": "wjgnxewf", - "SearchServiceName": "azs-net-mkqajmhd" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ujbjclen", + "SearchServiceName": "azs-net-tfcyedav", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClient.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClient.json index 8fae9aed4570..71bb3e53bc9c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClient.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClient.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-d3cada4d2d96394eb4c6f6303e227df6-1c0f937f3b60e640-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4b6405bb4fdcb9544c0fdf174384b8eb", "x-ms-return-client-request-id": "true" @@ -17,10 +17,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sun, 08 Mar 2020 23:05:22 GMT", - "elapsed-time": "55", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "107", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +29,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +48,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +71,7 @@ ], "Variables": { "RandomSeed": "2134332413", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json index 03118c1738a5..d9d244c0c461 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-44645f4cbe35aa429145c1075f1f362b-ad71bce618f4c04c-00", + "traceparent": "00-c71cab42efd02b41bfa031491882b11c-1b3cb6b08a963547-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a029684f073e794ac0638ad34807c434", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sun, 08 Mar 2020 23:05:23 GMT", - "elapsed-time": "79", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "47", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +30,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +49,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +72,7 @@ ], "Variables": { "RandomSeed": "525186745", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json index 44ad620eeb7e..e884cd93a4f8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ff8f707e4b397448bc2b394ce2879fbf-0a87b17c91d54940-00", + "traceparent": "00-839f6f50c89e8f45871bab3fd0591370-e7333b5814bef74c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "236582ddb742189bb152143ee3f98722", "x-ms-return-client-request-id": "true" @@ -19,8 +20,8 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Sun, 08 Mar 2020 23:05:23 GMT", - "elapsed-time": "2", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "36", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -33,7 +34,7 @@ ], "Variables": { "RandomSeed": "495571034", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json index c42e4e2b2ffb..e097e7992680 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027grurisvf\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f1b26ee0b786d04d87e95e8edb3d8c5c-0fce969df33c2045-00", + "traceparent": "00-5297ba565e5ab242b9bab19bb6900e10-79f08175232f2349-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6626ad329da6fd3193b5a92b98b5b74f", "x-ms-return-client-request-id": "true" @@ -19,8 +20,8 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Sun, 08 Mar 2020 23:05:24 GMT", - "elapsed-time": "6", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -33,7 +34,7 @@ ], "Variables": { "RandomSeed": "2104098183", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json index c60ef2c8ce26..6dd0220098b6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-47caba0661c06549a3c97ba77b5759c4-ba53f922c393e245-00", + "traceparent": "00-8efcc6242c83eb4289a5fa8ebdf85862-9bc1e5d717504848-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3a08bb2910952da418397c32fedb09c4", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sun, 08 Mar 2020 23:05:23 GMT", - "elapsed-time": "48", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "29", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +30,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +49,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +72,7 @@ ], "Variables": { "RandomSeed": "1977008283", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json index b90d9b009ddf..95651a08c9eb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f99588d94b456d4e811846f352cf287d-9f8a904799f92b46-00", + "traceparent": "00-5e27e85a33f6b840b12c64fc470528bf-3c7c87d47a636242-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3557d1c80476f1dec2ba685ca5c4ef71", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sun, 08 Mar 2020 23:05:25 GMT", - "elapsed-time": "195", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "26", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +30,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gjxdhkdl.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +49,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +72,7 @@ ], "Variables": { "RandomSeed": "180277775", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrors.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrors.json index 2d2297cd3d2d..77bbffa52b2c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrors.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-cf1ac5a2baa5b0499bc5fe69271349c7-699542117e16f548-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "74da84cc969d91270b8cb602179371eb", "x-ms-return-client-request-id": "true" @@ -20,8 +20,8 @@ "Content-Language": "en", "Content-Length": "84", "Content-Type": "application/json; charset=utf-8", - "Date": "Sun, 08 Mar 2020 23:05:23 GMT", - "elapsed-time": "6", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "9", "Expires": "-1", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -29,13 +29,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-gjxdhkdl\u0027 was not found." + "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-jcswnkcn\u0027 was not found." } } ], "Variables": { "RandomSeed": "266578448", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json index 0c9bccdaeced..58c4abfcc274 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-cd030eb9984b734695302244207326c7-7b5b4ab22a65b24e-00", + "traceparent": "00-a9154c55c9651c48ba1409b5b9fdd636-666b2dbf56377747-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9641ca3ce0e80834b37771415da659ae", "x-ms-return-client-request-id": "true" @@ -20,8 +21,8 @@ "Content-Language": "en", "Content-Length": "84", "Content-Type": "application/json; charset=utf-8", - "Date": "Sun, 08 Mar 2020 23:05:24 GMT", - "elapsed-time": "14", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "13", "Expires": "-1", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -29,13 +30,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-gjxdhkdl\u0027 was not found." + "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-jcswnkcn\u0027 was not found." } } ], "Variables": { "RandomSeed": "2017785311", - "SearchIndexName": "grurisvf", - "SearchServiceName": "azs-net-gjxdhkdl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json index 6c726bc4df05..0b3797a44c65 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-nknpyoel.search.windows.net/indexes(\u0027wcyxhjhn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jsjvgrvq.search.windows.net/indexes(\u0027iknqdekx\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c5610bb5aa8ed04393db4763cea835ff-b8157fb4c0b72d4d-00", + "traceparent": "00-4ec42e1ba9490840ab1a98051e1d7d80-5948e7e95bb71840-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1c37d00995567ff4f9c8d2a72cb6e71b", "x-ms-return-client-request-id": "true" @@ -19,8 +20,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:28:54 GMT", - "elapsed-time": "113", + "Date": "Sat, 25 Apr 2020 01:01:02 GMT", + "elapsed-time": "60", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -32,8 +33,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "486317286", - "SearchIndexName": "wcyxhjhn", - "SearchServiceName": "azs-net-nknpyoel" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "iknqdekx", + "SearchServiceName": "azs-net-jsjvgrvq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json index 7bc92b4a2c69..2ca08a2105fa 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-tmavoety.search.windows.net/indexes(\u0027cxqmoxse\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-frgrphbn.search.windows.net/indexes(\u0027whfkkvyo\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-20fb28060c57294f904bbecffee606e1-0847b9b4a6d3c24d-00", + "traceparent": "00-af400dc6537465488e314798449af821-d03bc8aec0cc0646-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "42cc42e8f3c91cbf52fa29d6d79b064e", "x-ms-return-client-request-id": "true" @@ -19,8 +20,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:36:08 GMT", - "elapsed-time": "69", + "Date": "Sat, 25 Apr 2020 01:07:38 GMT", + "elapsed-time": "130", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -32,8 +33,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1167851963", - "SearchIndexName": "cxqmoxse", - "SearchServiceName": "azs-net-tmavoety" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "whfkkvyo", + "SearchServiceName": "azs-net-frgrphbn", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json index f9ecbc720d2c..1a2e7432dbfe 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-thsqblus.search.windows.net/indexes(\u0027gullgivy\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "483", "Content-Type": "application/json", - "traceparent": "00-64f2983116d5c74284edb999f9ec0a9b-00d6de8a945f354b-00", + "traceparent": "00-038a2b21d068314a9e7ff060d2d6f6c2-dccf30d172051a49-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "24a4f4785ace54d0676f90da72dde4e1", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "297", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:29:24 GMT", - "elapsed-time": "95", + "Content-Length": "137", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:01:27 GMT", + "elapsed-time": "117", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -82,14 +82,15 @@ } }, { - "RequestUri": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-thsqblus.search.windows.net/indexes(\u0027gullgivy\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-deaa30a1376ff14391dae822cb877948-0b2fddb084ceca4e-00", + "traceparent": "00-21942f31400d7747b37c9a6f661330e9-54a39ae80e536f41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "81c662216cffeed460af5d745e06a65b", "x-ms-return-client-request-id": "true" @@ -100,8 +101,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:29:26 GMT", - "elapsed-time": "24", + "Date": "Sat, 25 Apr 2020 01:01:30 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -112,16 +113,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-thsqblus.search.windows.net/indexes(\u0027gullgivy\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-f65c1ece8967ef4db7d13d340ee68269-756cc8d942fd584d-00", + "traceparent": "00-d07450e889491d49bc62152dbe76f462-b3560b7c9b2e9c41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d842c065667af648595940b29f832ee7", "x-ms-return-client-request-id": "true" @@ -141,9 +143,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "297", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:29:26 GMT", + "Content-Length": "137", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:01:30 GMT", "elapsed-time": "29", "Expires": "-1", "OData-Version": "4.0", @@ -153,7 +155,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -171,14 +172,15 @@ } }, { - "RequestUri": "https://azs-net-kicfeosy.search.windows.net/indexes(\u0027kgghkhlb\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-thsqblus.search.windows.net/indexes(\u0027gullgivy\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f769bde1b8110e40bd972e1c4ed81664-e87142d181186548-00", + "traceparent": "00-5f8e071fbc1ef645b09e9b2fd764073a-b49bffdde9699245-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3fcd5e96716e0b8820b6c41ffd5bf660", "x-ms-return-client-request-id": "true" @@ -189,8 +191,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:29:28 GMT", - "elapsed-time": "3", + "Date": "Sat, 25 Apr 2020 01:01:32 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -202,8 +204,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "432976220", - "SearchIndexName": "kgghkhlb", - "SearchServiceName": "azs-net-kicfeosy" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "gullgivy", + "SearchServiceName": "azs-net-thsqblus", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json index 516cca22fe7a..0c08c2b7c4d7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-enfkqgli.search.windows.net/indexes(\u0027chcemhcd\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "483", "Content-Type": "application/json", - "traceparent": "00-c974d84a05d20646930e396a026b962e-9553bda11815524b-00", + "traceparent": "00-d4276c4a4de6d14abc7ca4f02d645555-68706c632eddca42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9a1bff16231abc751588e22f1bb62dd1", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "297", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:36:54 GMT", - "elapsed-time": "110", + "Content-Length": "137", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:08:04 GMT", + "elapsed-time": "120", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -82,14 +82,15 @@ } }, { - "RequestUri": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-enfkqgli.search.windows.net/indexes(\u0027chcemhcd\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-086342e8916f0449a81b159882f5b079-68a88b7884d71b47-00", + "traceparent": "00-d997f7ebf93704458fb16f8a3800c4bc-64064eb50280f242-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2a68e09fe70929f94e44de948f12181c", "x-ms-return-client-request-id": "true" @@ -100,8 +101,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:36:56 GMT", - "elapsed-time": "3", + "Date": "Sat, 25 Apr 2020 01:08:07 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -112,16 +113,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-enfkqgli.search.windows.net/indexes(\u0027chcemhcd\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-fb8a40bd5d5a5e4a8f555283c0bde9af-d38520d2958e024a-00", + "traceparent": "00-d4d47e8b8e3afb4fac6b728a843ad2a5-e051a21d0bfd0948-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2e8060ad12fd20dd69d256285fe0c3f1", "x-ms-return-client-request-id": "true" @@ -141,10 +143,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "297", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:36:56 GMT", - "elapsed-time": "26", + "Content-Length": "137", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:08:07 GMT", + "elapsed-time": "47", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -153,7 +155,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -171,14 +172,15 @@ } }, { - "RequestUri": "https://azs-net-jwpkrttk.search.windows.net/indexes(\u0027ncprxxsr\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-enfkqgli.search.windows.net/indexes(\u0027chcemhcd\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-e3fe6628b75a904caa92a79b1acbf1c8-7e6ec1a24696c444-00", + "traceparent": "00-1f3d8651b4987c459007fb3b1d516752-23feb8593c078643-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b614be8be5c02fbb05f14bd545e02d03", "x-ms-return-client-request-id": "true" @@ -189,8 +191,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:36:58 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:08:08 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -202,8 +204,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "282699616", - "SearchIndexName": "ncprxxsr", - "SearchServiceName": "azs-net-jwpkrttk" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "chcemhcd", + "SearchServiceName": "azs-net-enfkqgli", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json index b92b34cd1b84..e004ae793b11 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-blxpsoub.search.windows.net/indexes(\u0027ikpspirp\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-e473ee71fe39c5489fb1074c439c5289-7896b2766192f045-00", + "traceparent": "00-950281fd1bd6474c82c56b7cd597a6b8-c8671f2d79e5014a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0f053a14ec7785032a7274d470958cb4", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:29:53 GMT", - "elapsed-time": "98", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:01:58 GMT", + "elapsed-time": "96", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-blxpsoub.search.windows.net/indexes(\u0027ikpspirp\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b78bdd4004953044819ed3b9df3583cf-78395c878454d045-00", + "traceparent": "00-3396cc353c897e4b97d20b9b199dad9f-4dba61293c639748-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4a24e8378085131710dda09c4f12a081", "x-ms-return-client-request-id": "true" @@ -69,8 +70,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:29:55 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:02:00 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -81,16 +82,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-blxpsoub.search.windows.net/indexes(\u0027ikpspirp\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-1fe81560e1b6dc4481b699d233a60c73-afcb512cd22dfb4c-00", + "traceparent": "00-4c9ffe88ec3ded4abd8c20ae4f60f239-3dab7abfc69f3f4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "933f46319a92b55f57a970c880afe404", "x-ms-return-client-request-id": "true" @@ -107,10 +109,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:29:55 GMT", - "elapsed-time": "34", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:02:00 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,7 +121,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -131,14 +132,15 @@ } }, { - "RequestUri": "https://azs-net-urdlwwka.search.windows.net/indexes(\u0027equejnyw\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-blxpsoub.search.windows.net/indexes(\u0027ikpspirp\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-9c1b639fb63bf74085c2d389ed897070-ad2de989494c1c45-00", + "traceparent": "00-8a8153e30850fa4fa370f43938d6fd03-bdf1a5889a94434c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7803a36451f0948a22f1ff994c673518", "x-ms-return-client-request-id": "true" @@ -149,8 +151,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:29:57 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:02:02 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -162,8 +164,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1779014440", - "SearchIndexName": "equejnyw", - "SearchServiceName": "azs-net-urdlwwka" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ikpspirp", + "SearchServiceName": "azs-net-blxpsoub", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json index 57f22fcf33e2..6ee0f59d6276 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-upushysq.search.windows.net/indexes(\u0027rhrnrvpn\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-da5c3500829b344abfee1b659fea6538-6bbc8a0762fe1c4a-00", + "traceparent": "00-874e4b6888866142909b1707a5a3b4fc-d2452977e4668c4b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e20b8c2723563b98f8cd7393a9468c7b", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:37:26 GMT", - "elapsed-time": "107", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:08:36 GMT", + "elapsed-time": "127", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -51,14 +51,15 @@ } }, { - "RequestUri": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-upushysq.search.windows.net/indexes(\u0027rhrnrvpn\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-1c44092eafba5143be69d3ed06605ba2-6f0ec029bf7af04f-00", + "traceparent": "00-61900ca9a431d24c98bbbd6321e27779-f7189d8e1dab0a41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b53a4cb685b533c5ff5ba200436ce48b", "x-ms-return-client-request-id": "true" @@ -69,8 +70,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:37:28 GMT", - "elapsed-time": "4", + "Date": "Sat, 25 Apr 2020 01:08:38 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -81,16 +82,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-upushysq.search.windows.net/indexes(\u0027rhrnrvpn\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-e9f5fabcb34f6a46b3a08f0e6902c342-35b383cfe109b947-00", + "traceparent": "00-3e56597a259ac24e8b254f4c36876552-dbb85abfb3e19e42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0fcb78ad841aa5fcde3b98af37867515", "x-ms-return-client-request-id": "true" @@ -107,10 +109,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:37:28 GMT", - "elapsed-time": "27", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:08:38 GMT", + "elapsed-time": "52", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,7 +121,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -131,14 +132,15 @@ } }, { - "RequestUri": "https://azs-net-jhcekkdx.search.windows.net/indexes(\u0027gcysmnvo\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-upushysq.search.windows.net/indexes(\u0027rhrnrvpn\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-bf59f5fcd41e6841a0ca6db62067e41a-d4e3b21c3ecba148-00", + "traceparent": "00-09801e1a3e360f4bae8a68adab085560-e06472445ee2b44d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5e81da8b2f09a2bbc7d7e2fa8198f88b", "x-ms-return-client-request-id": "true" @@ -149,8 +151,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:37:30 GMT", - "elapsed-time": "3", + "Date": "Sat, 25 Apr 2020 01:08:40 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -162,8 +164,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1755502886", - "SearchIndexName": "gcysmnvo", - "SearchServiceName": "azs-net-jhcekkdx" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "rhrnrvpn", + "SearchServiceName": "azs-net-upushysq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json index 3bdcd7b03768..12f897732f90 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xdotsnmx.search.windows.net/indexes(\u0027wppkgjka\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "251", "Content-Type": "application/json", - "traceparent": "00-7be89e58320d8f40aab7ae15585a84a4-d0dd201c31c0ef45-00", + "traceparent": "00-5346e1ad2ba51d4dab201947846167f8-458263d03bfec343-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "cf1fd8bb01689a78c8f190efb0c92648", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:30:25 GMT", - "elapsed-time": "116", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:02:28 GMT", + "elapsed-time": "96", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -61,14 +61,15 @@ } }, { - "RequestUri": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xdotsnmx.search.windows.net/indexes(\u0027wppkgjka\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-46d1a28dbb39ac42b2d2ec9ca5884ff4-b40ea21991f99141-00", + "traceparent": "00-e8ade63193f4e34cb33904b056eaa24c-c99214619c1b2d46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5d0d15f30a0e1bd97d67a268e54982b2", "x-ms-return-client-request-id": "true" @@ -79,8 +80,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:30:27 GMT", - "elapsed-time": "26", + "Date": "Sat, 25 Apr 2020 01:02:30 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -91,16 +92,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xdotsnmx.search.windows.net/indexes(\u0027wppkgjka\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "252", "Content-Type": "application/json", - "traceparent": "00-a7a60cd71fca4e4aae8fabfac29cea01-1499c4be39d87141-00", + "traceparent": "00-5c6b88c785973e458dda18b0677c548c-c335af8682a82740-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5f4cc33dfde379a6066cc6a2ec65fe82", "x-ms-return-client-request-id": "true" @@ -127,10 +129,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:30:27 GMT", - "elapsed-time": "27", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:02:31 GMT", + "elapsed-time": "38", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -139,7 +141,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -151,14 +152,15 @@ } }, { - "RequestUri": "https://azs-net-dxeyutwy.search.windows.net/indexes(\u0027qneriwap\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xdotsnmx.search.windows.net/indexes(\u0027wppkgjka\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7898da97cd8f2f4f9a13e5665f251a59-d3d987486f41d841-00", + "traceparent": "00-7bff40a80311f3469843707fa00973dd-e18e08ccc2eb9e41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7ebc7de48b9ab094ff0451005e10b47e", "x-ms-return-client-request-id": "true" @@ -169,8 +171,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:30:29 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:02:33 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,8 +184,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "170080043", - "SearchIndexName": "qneriwap", - "SearchServiceName": "azs-net-dxeyutwy" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "wppkgjka", + "SearchServiceName": "azs-net-xdotsnmx", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json index 05a0ee6a665c..f83e0f0d14ec 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tegjovjy.search.windows.net/indexes(\u0027fxpiewao\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "251", "Content-Type": "application/json", - "traceparent": "00-511fcba3b80fe8438f95fb42bdd4ad4f-7128141897459841-00", + "traceparent": "00-6288adb7817d1a4a892289f20e0a2578-9e09d3811b826445-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ef71c43eb239eb400f7b0539411e1a36", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:37:58 GMT", - "elapsed-time": "82", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:09:15 GMT", + "elapsed-time": "281", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -61,14 +61,15 @@ } }, { - "RequestUri": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tegjovjy.search.windows.net/indexes(\u0027fxpiewao\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-46cb5d977cda8048b8f568905d9a612d-e417955b017b9b47-00", + "traceparent": "00-55ccdc8adfa93749a1205d1e5ad6d996-a09a03354159634d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "edbe3f1d740eaf2e72ba0901f3d523b6", "x-ms-return-client-request-id": "true" @@ -79,8 +80,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:38:00 GMT", - "elapsed-time": "8", + "Date": "Sat, 25 Apr 2020 01:09:17 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -91,16 +92,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tegjovjy.search.windows.net/indexes(\u0027fxpiewao\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "252", "Content-Type": "application/json", - "traceparent": "00-9ca917fb9d2e0a4dad69008fa4aace68-b64d183ec0f21d47-00", + "traceparent": "00-0a433d13aaa397499d79236ecbba9b0d-5afc66b31dea774a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5c80a3c88e4ef62bcc2fb47d85b4ef83", "x-ms-return-client-request-id": "true" @@ -127,10 +129,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:38:00 GMT", - "elapsed-time": "39", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:09:17 GMT", + "elapsed-time": "48", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -139,7 +141,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -151,14 +152,15 @@ } }, { - "RequestUri": "https://azs-net-aqtwnusa.search.windows.net/indexes(\u0027roilocad\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tegjovjy.search.windows.net/indexes(\u0027fxpiewao\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-80ab3db1dd0e16439e33da5854023f1d-d02facc600561549-00", + "traceparent": "00-7676422ef8c8a44b9923ffbae5d6016e-b8dfa5bdfef56a44-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "95be6eda6d3bc97d95c17c7fa93ef839", "x-ms-return-client-request-id": "true" @@ -169,8 +171,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:38:02 GMT", - "elapsed-time": "2", + "Date": "Sat, 25 Apr 2020 01:09:19 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,8 +184,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "836785609", - "SearchIndexName": "roilocad", - "SearchServiceName": "azs-net-aqtwnusa" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "fxpiewao", + "SearchServiceName": "azs-net-tegjovjy", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json index dedd42237fd2..9f287facbb3b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-pxcpgvqm.search.windows.net/indexes(\u0027xcbmtopw\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-nnorgtff.search.windows.net/indexes(\u0027lqhpubdw\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "482", "Content-Type": "application/json", - "traceparent": "00-d588fc7a14f1964795e3e8120e561840-e192cdba41794346-00", + "traceparent": "00-4b2c1b5db4f73b45ab681db1161a0961-342997a56d5c9747-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6e910c0169b1aa35c735dc9af96c6957", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:30:56 GMT", - "elapsed-time": "121", + "Content-Length": "155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:02:59 GMT", + "elapsed-time": "105", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-pxcpgvqm.search.windows.net/indexes(\u0027xcbmtopw\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -83,8 +83,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "552340877", - "SearchIndexName": "xcbmtopw", - "SearchServiceName": "azs-net-pxcpgvqm" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lqhpubdw", + "SearchServiceName": "azs-net-nnorgtff", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json index ed28b688d4dd..bb5bfae091f1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eydhvosx.search.windows.net/indexes(\u0027sqepubxy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fcptaggf.search.windows.net/indexes(\u0027tnsinxpf\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "482", "Content-Type": "application/json", - "traceparent": "00-a0a45f8451516d448ddf79a5f6c141dc-2b18a0f7b605a64d-00", + "traceparent": "00-cd4a303dc89dc24d818f2e018ed9533a-4d44fe39f7b0a34a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7f9dfcb9835f94b6255a180359a28d05", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:38:27 GMT", - "elapsed-time": "104", + "Content-Length": "155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:09:45 GMT", + "elapsed-time": "148", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eydhvosx.search.windows.net/indexes(\u0027sqepubxy\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -83,8 +83,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1834614957", - "SearchIndexName": "sqepubxy", - "SearchServiceName": "azs-net-eydhvosx" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "tnsinxpf", + "SearchServiceName": "azs-net-fcptaggf", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json index ee865d49b328..6f480f362751 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-hjemclfa.search.windows.net/indexes(\u0027uetirrqg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dumdsbgn.search.windows.net/indexes(\u0027xascxkuy\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "247", "Content-Type": "application/json", - "traceparent": "00-db4b57d6f5b3ec41932c265dd23df8f5-377f1ec8900ecc45-00", + "traceparent": "00-c0a493e56487b5408f363ccf5c2cbef1-72b21f8a726b6546-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1e447e2f19ca569dc22e5e7fcb4b8ebd", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:31:22 GMT", - "elapsed-time": "132", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:03:25 GMT", + "elapsed-time": "271", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hjemclfa.search.windows.net/indexes(\u0027uetirrqg\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -62,8 +62,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "683326896", - "SearchIndexName": "uetirrqg", - "SearchServiceName": "azs-net-hjemclfa" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "xascxkuy", + "SearchServiceName": "azs-net-dumdsbgn", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json index 9af6c42ba708..41f918d721d8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gargeudo.search.windows.net/indexes(\u0027nclucrjd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-qojhasox.search.windows.net/indexes(\u0027gvnjjkmu\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "247", "Content-Type": "application/json", - "traceparent": "00-d4208373b3aad644b212da8bfce4a391-6bcc210c5ea86e4d-00", + "traceparent": "00-4fd38df00bfdc248bf109bd219b02c7b-8ed5adf4fa06cd4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c055820da40e85843eade3fe89eb38c1", "x-ms-return-client-request-id": "true" @@ -37,10 +38,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:38:52 GMT", - "elapsed-time": "77", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:10:12 GMT", + "elapsed-time": "165", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -49,7 +50,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-gargeudo.search.windows.net/indexes(\u0027nclucrjd\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -62,8 +62,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "109207449", - "SearchIndexName": "nclucrjd", - "SearchServiceName": "azs-net-gargeudo" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "gvnjjkmu", + "SearchServiceName": "azs-net-qojhasox", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json index a38f0351a0dd..a024b010e643 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qenlkjpg.search.windows.net/indexes(\u0027hrbssjec\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-aofcsaje.search.windows.net/indexes(\u0027xjibgwcu\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3611", "Content-Type": "application/json", - "traceparent": "00-7c80a08aa2bafe46babad14d462fcf1e-6fe8612711403c48-00", + "traceparent": "00-53de9049d090354193c4b800ad24f27e-9b4b6c4af7a71748-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a7af2b74fd49d414bf6ea5e587749ab2", "x-ms-return-client-request-id": "true" @@ -149,10 +150,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:31:48 GMT", - "elapsed-time": "117", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:03:52 GMT", + "elapsed-time": "170", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,7 +162,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qenlkjpg.search.windows.net/indexes(\u0027hrbssjec\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -197,14 +197,15 @@ } }, { - "RequestUri": "https://azs-net-qenlkjpg.search.windows.net/indexes(\u0027hrbssjec\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-aofcsaje.search.windows.net/indexes(\u0027xjibgwcu\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ef4b0baa20428949b87726ee5960f520-c059d5a465800841-00", + "traceparent": "00-08247e5743431c428fb7b4277099688a-65d777b561ba8348-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "73e8cc089da49d8c2b7873a9306c9898", "x-ms-return-client-request-id": "true" @@ -215,8 +216,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:31:50 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:03:53 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -228,8 +229,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1983224603", - "SearchIndexName": "hrbssjec", - "SearchServiceName": "azs-net-qenlkjpg" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "xjibgwcu", + "SearchServiceName": "azs-net-aofcsaje", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json index 6738659e708a..bc321afa71ac 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-bunnjosk.search.windows.net/indexes(\u0027wuewpdep\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gdipgumn.search.windows.net/indexes(\u0027xbobdakh\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3611", "Content-Type": "application/json", - "traceparent": "00-86ce20960a5cb547b23b7cdc338ec1cc-f0c8a59b609f6345-00", + "traceparent": "00-666ecfeeca83c04691251c3f9c138bc4-d59d9a163cc9b44b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "842adc2eefd236b7f3dd2173d1bbdd5c", "x-ms-return-client-request-id": "true" @@ -149,10 +150,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:39:20 GMT", - "elapsed-time": "97", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:10:39 GMT", + "elapsed-time": "174", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,7 +162,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-bunnjosk.search.windows.net/indexes(\u0027wuewpdep\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -197,14 +197,15 @@ } }, { - "RequestUri": "https://azs-net-bunnjosk.search.windows.net/indexes(\u0027wuewpdep\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gdipgumn.search.windows.net/indexes(\u0027xbobdakh\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4fd2ec575bb3044b97d63f35bcc37b4c-e05c2d2adbe6214d-00", + "traceparent": "00-f128e6b99179c442bfe03491062dd79c-944e49d1eca36746-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "64f08d5b49f31b48855a8f36b28f9b3e", "x-ms-return-client-request-id": "true" @@ -215,8 +216,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:39:22 GMT", - "elapsed-time": "2", + "Date": "Sat, 25 Apr 2020 01:10:41 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -228,8 +229,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1113032202", - "SearchIndexName": "wuewpdep", - "SearchServiceName": "azs-net-bunnjosk" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "xbobdakh", + "SearchServiceName": "azs-net-gdipgumn", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json index f7debae21e25..d8ecbcdf0223 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-msgkvhhm.search.windows.net/indexes(\u0027gbsfbchb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1680", "Content-Type": "application/json", - "traceparent": "00-b54cd1bc38aa5a4c97565633477047d9-b2d7873d1fd0a340-00", + "traceparent": "00-e5c1637efd90d7408ae70f898c099bfa-6d9539b91db1a149-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5de7cd27daaba6e6951bc0eddceaac08", "x-ms-return-client-request-id": "true" @@ -74,10 +75,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 07:25:07 GMT", - "elapsed-time": "156", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:21 GMT", + "elapsed-time": "188", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,7 +87,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -98,16 +98,17 @@ } }, { - "RequestUri": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-msgkvhhm.search.windows.net/indexes(\u0027gbsfbchb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "378", "Content-Type": "application/json", - "traceparent": "00-c99ff7a5f87112498b9e4768a887936a-2c46da6682eb524f-00", + "traceparent": "00-f26c574ac68cb34da84d73c9b2f3f66c-d3002cd12581d447-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8638f76bb865265973c5f5169a34ec22", "x-ms-return-client-request-id": "true" @@ -148,10 +149,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 07:25:10 GMT", - "elapsed-time": "24", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:23 GMT", + "elapsed-time": "57", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -160,7 +161,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -172,14 +172,15 @@ } }, { - "RequestUri": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-msgkvhhm.search.windows.net/indexes(\u0027gbsfbchb\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-168969095fb13148a939986829b33a08-23b5ca0cc1ef7849-00", + "traceparent": "00-a5aa3997d899c1438291628d1419ea34-61424a2515b1004f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "71a8a1f43dd9dc410cc30f0d308050fb", "x-ms-return-client-request-id": "true" @@ -188,10 +189,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1003", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 07:25:12 GMT", - "elapsed-time": "13", + "Content-Length": "894", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:25 GMT", + "elapsed-time": "31", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -200,7 +201,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Secret Point Motel", "description": null, @@ -240,16 +240,17 @@ } }, { - "RequestUri": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-msgkvhhm.search.windows.net/indexes(\u0027gbsfbchb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1680", "Content-Type": "application/json", - "traceparent": "00-4e90db6044011147ba1dec93ba80f53f-995b8747b2790445-00", + "traceparent": "00-56d4b4c5ba490044820ffbe0736703be-f8eb0831562fb047-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ebf2967c7a9e6fd973c1e9e6e4d00b61", "x-ms-return-client-request-id": "true" @@ -313,10 +314,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 07:25:12 GMT", - "elapsed-time": "26", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:25 GMT", + "elapsed-time": "44", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,7 +326,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -337,14 +337,15 @@ } }, { - "RequestUri": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-msgkvhhm.search.windows.net/indexes(\u0027gbsfbchb\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a40e7b706491764bab02aee3f01126aa-3c6619e1b48e7d4c-00", + "traceparent": "00-12e8e8ae7f135e4d93126cecd6b62b46-b5d583224fb40340-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3bf99d2e3b422e2eb65b79a1a94bf5f2", "x-ms-return-client-request-id": "true" @@ -353,10 +354,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1668", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 07:25:14 GMT", - "elapsed-time": "5", + "Content-Length": "1559", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:28 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -365,7 +366,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-vimbrmom.search.windows.net/indexes(\u0027wkmiejei\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Secret Point Motel", "description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time\u0027s Square and the historic centre of the city, as well as other places of interest that make New York one of America\u0027s most attractive and cosmopolitan cities.", @@ -419,8 +419,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1403851089", - "SearchIndexName": "wkmiejei", - "SearchServiceName": "azs-net-vimbrmom" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "gbsfbchb", + "SearchServiceName": "azs-net-msgkvhhm", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json index 20d608a561b2..1374f84edf0a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ijqpmsol.search.windows.net/indexes(\u0027mqnerwvj\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1680", "Content-Type": "application/json", - "traceparent": "00-be0dc5b5d51ca0438738bd566b98e3c2-2b2bbe7672ce5e42-00", + "traceparent": "00-d2104f0ec711214ebe06a44cdc8d1b18-6a753d11ec3adc4f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "aaded8341d193314acc7cc8e594a9eb0", "x-ms-return-client-request-id": "true" @@ -74,10 +75,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:55:18 GMT", - "elapsed-time": "114", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:11:08 GMT", + "elapsed-time": "182", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,7 +87,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -98,16 +98,17 @@ } }, { - "RequestUri": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ijqpmsol.search.windows.net/indexes(\u0027mqnerwvj\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "378", "Content-Type": "application/json", - "traceparent": "00-b0824ebe04be244ea1857acd531cd6de-4c67562e4f2d114e-00", + "traceparent": "00-b0bea05cd7bd1146b86859ed825ba51a-bd10627c7a65bd45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d137a2fc58d88813aacc117216d4d3d6", "x-ms-return-client-request-id": "true" @@ -148,10 +149,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:55:20 GMT", - "elapsed-time": "27", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:11:10 GMT", + "elapsed-time": "49", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -160,7 +161,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -172,14 +172,15 @@ } }, { - "RequestUri": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ijqpmsol.search.windows.net/indexes(\u0027mqnerwvj\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-45baf00db4f6274284a877d573fcb2d5-c4c28f3128f22746-00", + "traceparent": "00-3be19ce4425dd846a4a13c29c5abff58-00de2e1bfa296743-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f7125fc117c4ba3a654fd02ab3fee744", "x-ms-return-client-request-id": "true" @@ -188,10 +189,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1003", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:55:22 GMT", - "elapsed-time": "12", + "Content-Length": "894", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:11:12 GMT", + "elapsed-time": "33", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -200,7 +201,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Secret Point Motel", "description": null, @@ -240,16 +240,17 @@ } }, { - "RequestUri": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ijqpmsol.search.windows.net/indexes(\u0027mqnerwvj\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1680", "Content-Type": "application/json", - "traceparent": "00-520423f7751b3241a32ae51e489d3c5e-94d2df1d7604fd45-00", + "traceparent": "00-49ad549fce4aff478d32f3a419cd44ea-b72620c2d09b7c4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3a50e2b9e73cdb67c556004d0ba11dd8", "x-ms-return-client-request-id": "true" @@ -313,10 +314,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "234", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:55:22 GMT", - "elapsed-time": "25", + "Content-Length": "74", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:11:12 GMT", + "elapsed-time": "49", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,7 +326,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -337,14 +337,15 @@ } }, { - "RequestUri": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ijqpmsol.search.windows.net/indexes(\u0027mqnerwvj\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-21064bbf819de2448075fb3c75e943a0-e71a482e2392b947-00", + "traceparent": "00-17af2bb8907700438be5ef5d3c9ae183-efcdd2ba9ca13641-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "facdf5f3a637e5ec677d6c8888e9d4ab", "x-ms-return-client-request-id": "true" @@ -353,10 +354,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1668", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:55:25 GMT", - "elapsed-time": "5", + "Content-Length": "1559", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:11:14 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -365,7 +366,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-oybkdywy.search.windows.net/indexes(\u0027cvwtxbiu\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": "Secret Point Motel", "description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time\u0027s Square and the historic centre of the city, as well as other places of interest that make New York one of America\u0027s most attractive and cosmopolitan cities.", @@ -419,8 +419,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "660557965", - "SearchIndexName": "cvwtxbiu", - "SearchServiceName": "azs-net-oybkdywy" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "mqnerwvj", + "SearchServiceName": "azs-net-ijqpmsol", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json index be5fc4ed0ff0..5f42e224daa7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "2425", "Content-Type": "application/json", - "traceparent": "00-63b93737e16a634abad4bb89857e099c-be4bd502ecf2e544-00", + "traceparent": "00-32be066610883a4485dfbc4699d661e0-747a4afcd860d343-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "04d36a16c97e66b037fb770aff04a144", "x-ms-return-client-request-id": "true" @@ -181,10 +182,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "549", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:33:22 GMT", - "elapsed-time": "133", + "Content-Length": "389", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:54 GMT", + "elapsed-time": "340", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -193,7 +194,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -235,14 +235,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f3b5570179c1dd43882c7dc4c5ee6722-96ccc9ebdea2cc43-00", + "traceparent": "00-76afb5497299424ab30662ac83242e1f-57c70dbc54930446-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8912016614f3ab8d8fa07c2e886b82ca", "x-ms-return-client-request-id": "true" @@ -251,10 +252,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "600", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", - "elapsed-time": "12", + "Content-Length": "491", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -263,7 +264,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -297,14 +297,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a2e03d8e9d17244aa979c5f0551da3d9-692279370d3f3442-00", + "traceparent": "00-5af0654300f0d5439b36f1ebc23373d9-f7f544a89479834e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e960a71a2fdc418f552f994610082ea1", "x-ms-return-client-request-id": "true" @@ -313,10 +314,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "616", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", - "elapsed-time": "6", + "Content-Length": "507", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,7 +326,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "2", "hotelName": null, "description": null, @@ -361,14 +361,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-578cf606dfe2a940b958255218abc644-3fd4626c1899a54f-00", + "traceparent": "00-8bb7ecdb2bb44f428bec2c33e61f00db-a675f8d24650784d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a0ac7bbf95ce016bdd2875dd4d82decb", "x-ms-return-client-request-id": "true" @@ -377,9 +378,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "474", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", + "Content-Length": "365", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", @@ -389,7 +390,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": null, "description": null, @@ -417,14 +417,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-39bd918c693f2243b6dd157b9eede2ca-f171afb7b87d5149-00", + "traceparent": "00-58c3bf8b6dcfdf4489b2bc0ae2b48413-9506d565c1eba24e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "58f0ac78b7a4366871d134c47b469a86", "x-ms-return-client-request-id": "true" @@ -433,9 +434,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "473", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", + "Content-Length": "364", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", @@ -445,7 +446,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "4", "hotelName": null, "description": null, @@ -473,14 +473,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-be49997426a4434dbf94a126c14c5f2e-b071711a5a4bf74c-00", + "traceparent": "00-5450bcd9a52e3b409d798e756cd29b5e-a864ebf6df86f449-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0c6fda72e2bf84fc3b5e0bb4bab1f3d3", "x-ms-return-client-request-id": "true" @@ -489,10 +490,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "473", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", - "elapsed-time": "5", + "Content-Length": "364", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -501,7 +502,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "5", "hotelName": null, "description": null, @@ -529,14 +529,15 @@ } }, { - "RequestUri": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vhofvaed.search.windows.net/indexes(\u0027lifjsfgb\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-14833c29385ddd42bd370faa4c050f38-ded18256ca50be4e-00", + "traceparent": "00-7d8a5e1b6092cd408c82cdb8bb61f37f-7616c2722b3b3744-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "64cecd50d51807fc13752efd61a78597", "x-ms-return-client-request-id": "true" @@ -545,9 +546,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "334", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:33:24 GMT", + "Content-Length": "225", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:04:56 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", @@ -557,7 +558,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-yqkkgroe.search.windows.net/indexes(\u0027pjsioney\u0027)/$metadata#docs(*)/$entity", "hotelId": "6", "hotelName": null, "description": null, @@ -575,8 +575,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1585493960", - "SearchIndexName": "pjsioney", - "SearchServiceName": "azs-net-yqkkgroe" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lifjsfgb", + "SearchServiceName": "azs-net-vhofvaed", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json index 5cb0998a3beb..022038949a17 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "2425", "Content-Type": "application/json", - "traceparent": "00-eb4e3a81ac1d524e8bc908536042c4c4-6b06754b8e60064e-00", + "traceparent": "00-19e2c1ef01c0c94c8142b6c58de9a0f6-29ae487a9edebd4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "266e1dfb8c0a70eae757f2c253b6bb2a", "x-ms-return-client-request-id": "true" @@ -181,10 +182,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "549", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:41:06 GMT", - "elapsed-time": "100", + "Content-Length": "389", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:00 GMT", + "elapsed-time": "239", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -193,7 +194,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -235,14 +235,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-5f8b3e5bcab2394db9b3659fb0af7ab8-1363e1eae88a1549-00", + "traceparent": "00-d94452ed84f8804580fba9e999a4a86b-5eb87364d3016d40-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "81ecb5b70e5ac29d617ad34b9959389c", "x-ms-return-client-request-id": "true" @@ -251,10 +252,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "600", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "11", + "Content-Length": "491", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "13", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -263,7 +264,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "1", "hotelName": null, "description": null, @@ -297,14 +297,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4570f6b1bbb85041892f993aa23a70b1-0330223a2429344c-00", + "traceparent": "00-8a7ee7b3c337a440b6266ba918fde1d7-9ce2bf1d13500245-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ec4c78bad13408b7c2cb3ea22762c253", "x-ms-return-client-request-id": "true" @@ -313,10 +314,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "616", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "6", + "Content-Length": "507", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,7 +326,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "2", "hotelName": null, "description": null, @@ -361,14 +361,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7b0fe46884dd654790ffeff293851d66-a0e13b24c38c1a44-00", + "traceparent": "00-a8f0572f53ffaf44a3376e2a20ae053f-5bb02a5fba98e849-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1605a8916cc2ed437facc490b89fd68d", "x-ms-return-client-request-id": "true" @@ -377,10 +378,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "474", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "6", + "Content-Length": "365", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -389,7 +390,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "3", "hotelName": null, "description": null, @@ -417,14 +417,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4ecf16e76f6f364f8068e85839f41fa1-0728cce149390845-00", + "traceparent": "00-c0665a19cc38b345bbabd71c4c38e8bf-daf80c0c4251b040-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "da07561fce69e5f6fee3bf8fcffb9bff", "x-ms-return-client-request-id": "true" @@ -433,10 +434,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "473", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "16", + "Content-Length": "364", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -445,7 +446,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "4", "hotelName": null, "description": null, @@ -473,14 +473,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-bd2bb9352d133b4ba3f2680f26de30f9-1e0b58a0a5543341-00", + "traceparent": "00-6d350ff543147842b97a852f7b91870c-0bbadf7c1531454b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f0b980b721544ed9355e6d880d265023", "x-ms-return-client-request-id": "true" @@ -489,10 +490,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "473", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "5", + "Content-Length": "364", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -501,7 +502,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "5", "hotelName": null, "description": null, @@ -529,14 +529,15 @@ } }, { - "RequestUri": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bwbkpaxu.search.windows.net/indexes(\u0027bujxdntf\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f274a06011a5114ba50ec6b7f051fe76-2c3085dc2ef60243-00", + "traceparent": "00-b1170a3a9c554140a82c05fc9964004f-2bdfa57b8a84694b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d082b0f4e85ac2eab21f18deacb41e83", "x-ms-return-client-request-id": "true" @@ -545,10 +546,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "334", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Thu, 12 Mar 2020 06:41:08 GMT", - "elapsed-time": "5", + "Content-Length": "225", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:02 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -557,7 +558,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-xvesmvsh.search.windows.net/indexes(\u0027uesuuaiy\u0027)/$metadata#docs(*)/$entity", "hotelId": "6", "hotelName": null, "description": null, @@ -575,8 +575,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1917208391", - "SearchIndexName": "uesuuaiy", - "SearchServiceName": "azs-net-xvesmvsh" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "bujxdntf", + "SearchServiceName": "azs-net-bwbkpaxu", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json index 7b0b5b49118f..50ef296e2e8a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wuixopbs.search.windows.net/indexes(\u0027umfthdse\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wwofdkcs.search.windows.net/indexes(\u0027hruqgdcu\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3987", "Content-Type": "application/json", - "traceparent": "00-a7ab055b643a514a8176a0863b290ef3-a44242918037d24c-00", + "traceparent": "00-867f734194198546845388c2df3fb714-074d4829f1c5744b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a0024a861f497bcd454835c9d5f04869", "x-ms-return-client-request-id": "true" @@ -185,10 +186,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:33:49 GMT", - "elapsed-time": "101", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:05:21 GMT", + "elapsed-time": "266", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -197,7 +198,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wuixopbs.search.windows.net/indexes(\u0027umfthdse\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -233,14 +233,15 @@ } }, { - "RequestUri": "https://azs-net-wuixopbs.search.windows.net/indexes(\u0027umfthdse\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wwofdkcs.search.windows.net/indexes(\u0027hruqgdcu\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-56ad4431f5e3ff40afad4659309af809-340930878dd5e547-00", + "traceparent": "00-38afedf4523a364aba41e784cb72a03f-e33de4923263fd45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5f6c2fedab3301fcb3d186229e3aefec", "x-ms-return-client-request-id": "true" @@ -251,8 +252,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:33:51 GMT", - "elapsed-time": "3", + "Date": "Sat, 25 Apr 2020 01:05:23 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -264,8 +265,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "216418330", - "SearchIndexName": "umfthdse", - "SearchServiceName": "azs-net-wuixopbs" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "hruqgdcu", + "SearchServiceName": "azs-net-wwofdkcs", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json index 624e1f523cad..c620d879dc01 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ycppoecg.search.windows.net/indexes(\u0027smgekprn\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-kfbysvin.search.windows.net/indexes(\u0027nvcohiva\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3987", "Content-Type": "application/json", - "traceparent": "00-d1efb274403f044a95f68b867301c2c7-1943c5961f35c848-00", + "traceparent": "00-ce9a0d4433573048bba7636b6922911d-a3a2ce0395948a4e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "29f6f4a77f5e31d972d6cd1564c8ad19", "x-ms-return-client-request-id": "true" @@ -185,10 +186,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:41:33 GMT", - "elapsed-time": "157", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:28 GMT", + "elapsed-time": "128", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -197,7 +198,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ycppoecg.search.windows.net/indexes(\u0027smgekprn\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -233,14 +233,15 @@ } }, { - "RequestUri": "https://azs-net-ycppoecg.search.windows.net/indexes(\u0027smgekprn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-kfbysvin.search.windows.net/indexes(\u0027nvcohiva\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-87805bc82c617441964bfee817658e83-9719f5051dea2941-00", + "traceparent": "00-39e1c84f5ea86e4da20b1c1d897021ca-99e49d707078464e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "af1f911a22849c17a2de57a0c0a6b790", "x-ms-return-client-request-id": "true" @@ -251,8 +252,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:41:35 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:12:31 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -264,8 +265,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1761363080", - "SearchIndexName": "smgekprn", - "SearchServiceName": "azs-net-ycppoecg" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "nvcohiva", + "SearchServiceName": "azs-net-kfbysvin", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json index 8c8799afd7b1..a9b5ef9092ca 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-tjckvjxr.search.windows.net/indexes(\u0027fqxqkdif\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgfyhvxm.search.windows.net/indexes(\u0027ncynbwsb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1112", "Content-Type": "application/json", - "traceparent": "00-aeef790a2783f843bf7791275a9e9f4a-feec9c664d65fb47-00", + "traceparent": "00-f9a82eaddddf75458274c052a90fb5bb-f398c31d83858b44-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "501db6d588ced0205f301700abe23d25", "x-ms-return-client-request-id": "true" @@ -57,10 +58,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:34:19 GMT", - "elapsed-time": "118", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:05:51 GMT", + "elapsed-time": "166", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -69,7 +70,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-tjckvjxr.search.windows.net/indexes(\u0027fqxqkdif\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -105,14 +105,15 @@ } }, { - "RequestUri": "https://azs-net-tjckvjxr.search.windows.net/indexes(\u0027fqxqkdif\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgfyhvxm.search.windows.net/indexes(\u0027ncynbwsb\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7bcd595875b2894089ca9ef31ebc9995-fdddc2fc677b544c-00", + "traceparent": "00-4bace037b1d46043a8bf338529e9bceb-afa84c9b55c77a4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9fd9e453d8455e329458757c578c9a23", "x-ms-return-client-request-id": "true" @@ -123,8 +124,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:34:21 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:05:53 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -136,8 +137,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1484375429", - "SearchIndexName": "fqxqkdif", - "SearchServiceName": "azs-net-tjckvjxr" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ncynbwsb", + "SearchServiceName": "azs-net-bgfyhvxm", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json index 931df150545c..082d6f19a929 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qiuftcok.search.windows.net/indexes(\u0027hgeiqtvg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-feafxarh.search.windows.net/indexes(\u0027lunqipiy\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1112", "Content-Type": "application/json", - "traceparent": "00-91b4be78de0ebb4f8f7d3dfcb2f27664-46f1a3257df69048-00", + "traceparent": "00-1be97e70964f1843bed51b2e07a7f1db-108a0e9af02c3543-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f030d49b8b4987465338499c35df9763", "x-ms-return-client-request-id": "true" @@ -57,9 +58,9 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "504", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:42:04 GMT", + "Content-Length": "344", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:12:56 GMT", "elapsed-time": "157", "Expires": "-1", "OData-Version": "4.0", @@ -69,7 +70,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qiuftcok.search.windows.net/indexes(\u0027hgeiqtvg\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -105,14 +105,15 @@ } }, { - "RequestUri": "https://azs-net-qiuftcok.search.windows.net/indexes(\u0027hgeiqtvg\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-feafxarh.search.windows.net/indexes(\u0027lunqipiy\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-d2b6ddf49ea39744a25b35eebdcb55eb-72ff8028cd40b54c-00", + "traceparent": "00-bfcb639ab41724449cad50aad2f1cf2c-2f5609dc2197b44a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9dca118d52b3c674fae1a382b8a1e644", "x-ms-return-client-request-id": "true" @@ -123,8 +124,8 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Thu, 12 Mar 2020 06:42:06 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:12:58 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -136,8 +137,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "126748610", - "SearchIndexName": "hgeiqtvg", - "SearchServiceName": "azs-net-qiuftcok" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lunqipiy", + "SearchServiceName": "azs-net-feafxarh", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json index 3d341ef4da9c..197f7215c25b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-sflodivj.search.windows.net/indexes(\u0027orotltvl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-uqienbwk.search.windows.net/indexes(\u0027evxeemvh\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-1a7b5c681c79ac46b8234c71bf03b533-b55a6aa92fd84a4c-00", + "traceparent": "00-4cc7dc610b3c074b851c8f1e0b20838a-52961ab3bb61214f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "675687be5f4018261f4dd6c97e64c115", "x-ms-return-client-request-id": "true" @@ -27,9 +28,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "124", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:34:48 GMT", - "elapsed-time": "57", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:06:19 GMT", + "elapsed-time": "132", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,8 +47,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "687109065", - "SearchIndexName": "orotltvl", - "SearchServiceName": "azs-net-sflodivj" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "evxeemvh", + "SearchServiceName": "azs-net-uqienbwk", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json index 135f2152d136..7ad43b92b86c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wjjoqhus.search.windows.net/indexes(\u0027twyypove\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-whsmvwpe.search.windows.net/indexes(\u0027onvswins\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-8b5c079fe8a182418e71adc1a4d990c9-c83c6b007f3f6a44-00", + "traceparent": "00-5caa022a2b6edd4ead4efb2319e83694-9abfe3f25a33ba4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "671adb4c286def740ec75df15d888225", "x-ms-return-client-request-id": "true" @@ -27,9 +28,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "124", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:42:53 GMT", - "elapsed-time": "270", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:13:25 GMT", + "elapsed-time": "126", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,8 +47,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1159546087", - "SearchIndexName": "twyypove", - "SearchServiceName": "azs-net-wjjoqhus" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "onvswins", + "SearchServiceName": "azs-net-whsmvwpe", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json index 75b93fc37465..741020db6a74 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-pooektdn.search.windows.net/indexes(\u0027wpswqkhr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gjhlyhta.search.windows.net/indexes(\u0027xcqbkoqj\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "486", "Content-Type": "application/json", - "traceparent": "00-da65a10ab5325b48bb6d51cdd6582497-6a995e11bace0348-00", + "traceparent": "00-d8d73dbd0afdba468d470e7b27bdff51-ee1593a978934645-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d5ce6a6c5c540ae091560e3e47589eb7", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:35:15 GMT", - "elapsed-time": "109", + "Content-Length": "155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:06:46 GMT", + "elapsed-time": "206", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-pooektdn.search.windows.net/indexes(\u0027wpswqkhr\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -83,8 +83,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "276729186", - "SearchIndexName": "wpswqkhr", - "SearchServiceName": "azs-net-pooektdn" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "xcqbkoqj", + "SearchServiceName": "azs-net-gjhlyhta", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json index 340d8255aedd..aac2f7916e22 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-leemfcfv.search.windows.net/indexes(\u0027nfhiyspx\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yisxmngk.search.windows.net/indexes(\u0027nsmxhqex\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "486", "Content-Type": "application/json", - "traceparent": "00-71ba0f2ab440eb46ba40d7af8dea7c47-3a8da9c029793249-00", + "traceparent": "00-6aaf509dfd4d8b43b4aaef69bfd14d4f-dd92f023c2755a44-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "04bc46f5376814253de8557a155fc3da", "x-ms-return-client-request-id": "true" @@ -52,10 +53,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:43:24 GMT", - "elapsed-time": "116", + "Content-Length": "155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:13:50 GMT", + "elapsed-time": "202", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,7 +65,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-leemfcfv.search.windows.net/indexes(\u0027nfhiyspx\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1", @@ -83,8 +83,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "500651422", - "SearchIndexName": "nfhiyspx", - "SearchServiceName": "azs-net-leemfcfv" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "nsmxhqex", + "SearchServiceName": "azs-net-yisxmngk", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json index 3573e026bfcc..947233ff86f4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-dabbqebl.search.windows.net/indexes(\u0027nsuetegl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xtvpuxha.search.windows.net/indexes(\u0027jttlxthb\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-5263c42bdd65ba4ea2a84b2bfeefd005-216f926a8ab0a842-00", + "traceparent": "00-27face8e114cbc49b8a8605e2d84a930-a778c2fd687c3f42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "cbc31d4dbd8a2fc4e121ff629bd129b8", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:35:42 GMT", - "elapsed-time": "64", + "Content-Length": "93", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:07:11 GMT", + "elapsed-time": "57", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-dabbqebl.search.windows.net/indexes(\u0027nsuetegl\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "42", @@ -51,8 +51,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1230788505", - "SearchIndexName": "nsuetegl", - "SearchServiceName": "azs-net-dabbqebl" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "jttlxthb", + "SearchServiceName": "azs-net-xtvpuxha", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json index f6be4a24dc35..a07e3e45e915 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qygagdwi.search.windows.net/indexes(\u0027nblvdpts\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ncryoiei.search.windows.net/indexes(\u0027ouqkexjc\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-965ae0727578c84d81a61e047661f782-ad3987ef9ecfe043-00", + "traceparent": "00-a4060a78edc4754ba9c85405b61d153a-9e0a9588aee7ab44-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9454778a86456b312a3ea4e6ea1645c0", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 06:43:52 GMT", - "elapsed-time": "108", + "Content-Length": "93", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:17 GMT", + "elapsed-time": "120", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qygagdwi.search.windows.net/indexes(\u0027nblvdpts\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "42", @@ -51,8 +51,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1670034816", - "SearchIndexName": "nblvdpts", - "SearchServiceName": "azs-net-qygagdwi" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ouqkexjc", + "SearchServiceName": "azs-net-ncryoiei", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json index 9d2aec0c6e1b..c5f5628b30ee 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-0c360c2d75a71346879b2823af5680a0-a6e452c0ec12d84b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a08172e48587447c359b02bce6a6aff1", "x-ms-return-client-request-id": "true" @@ -23,10 +23,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1079", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 14:32:40 GMT", - "elapsed-time": "156", + "Content-Length": "872", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "15", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +35,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.7486069, @@ -54,19 +53,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -74,16 +61,16 @@ } }, { - "RequestUri": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-b64100b60ec1534e988ace5885067053-ef03f5e43d6ca24d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8abd3980f0f41cac28b93e138ca75f59", "x-ms-return-client-request-id": "true" @@ -96,10 +83,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1079", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 14:32:40 GMT", - "elapsed-time": "8", + "Content-Length": "872", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:19 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,7 +95,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.7486069, @@ -127,19 +113,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -149,7 +123,7 @@ ], "Variables": { "RandomSeed": "1492439627", - "SearchIndexName": "vtuoookl", - "SearchServiceName": "azs-net-eckudmjl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json index 88d84f2e21a4..fbd1d8adf25d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjyupvjq.search.windows.net/indexes(\u0027fgnpacjo\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-huqavjli.search.windows.net/indexes(\u0027biycjrvx\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "152", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "024524334adee593f5ff620e2e46cb84", "x-ms-return-client-request-id": "true" @@ -33,9 +34,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "55", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 02 Apr 2020 22:03:07 GMT", - "elapsed-time": "142", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:46 GMT", + "elapsed-time": "122", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -52,8 +53,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "978400005", - "SearchIndexName": "fgnpacjo", - "SearchServiceName": "azs-net-gjyupvjq" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "biycjrvx", + "SearchServiceName": "azs-net-huqavjli", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json index 625a2019b7ad..d6a36a0325fc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "109", "Content-Type": "application/json", - "traceparent": "00-fb2f680fd626de47abda0e6181262533-b196473dfa0a3845-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "4cbbd33490420dee971451eace00649b", "x-ms-return-client-request-id": "true" @@ -26,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1079", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 14:32:41 GMT", - "elapsed-time": "7", + "Content-Length": "872", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "121", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.7486069, @@ -57,19 +56,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -79,7 +66,7 @@ ], "Variables": { "RandomSeed": "1402132638", - "SearchIndexName": "vtuoookl", - "SearchServiceName": "azs-net-eckudmjl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json index 549688ca969f..70e06a35d713 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-56286934edd4bd45a827d165075962e8-d388ea01ae463d45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3ca72ac76a8c267bd9f5e5c0f47395a4", "x-ms-return-client-request-id": "true" @@ -23,10 +23,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1079", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 14:32:41 GMT", - "elapsed-time": "13", + "Content-Length": "872", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "26", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +35,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.7486069, @@ -54,19 +53,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -74,16 +61,17 @@ } }, { - "RequestUri": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-a55dfb6fcd95444a9e8a9387319712a9-dcb29a49220c1e4f-00", + "traceparent": "00-2263e34bc5e049449467b5079d12762e-d0ab9de273cccc4c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200312.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c4773c05d66cb29c12ab04f8a2e9b0c8", "x-ms-return-client-request-id": "true" @@ -96,10 +84,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1079", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 12 Mar 2020 14:32:41 GMT", - "elapsed-time": "8", + "Content-Length": "872", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,7 +96,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.7486069, @@ -127,19 +114,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -149,7 +124,7 @@ ], "Variables": { "RandomSeed": "549811099", - "SearchIndexName": "vtuoookl", - "SearchServiceName": "azs-net-eckudmjl" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json index 29e7c6ca6268..b5efe96e7df1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json @@ -1,13 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-lnphwbdj.search.windows.net/indexes(\u0027mkucleqc\u0027)/docs(\u002712345\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs(\u002712345\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7c34fbb2dd26e95ef8b150d6b9aa6381", "x-ms-return-client-request-id": "true" @@ -17,8 +18,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 02 Apr 2020 22:03:11 GMT", - "elapsed-time": "7", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "3", "Expires": "-1", "Pragma": "no-cache", "request-id": "7c34fbb2-dd26-e95e-f8b1-50d6b9aa6381", @@ -29,7 +30,7 @@ ], "Variables": { "RandomSeed": "1565637229", - "SearchIndexName": "mkucleqc", - "SearchServiceName": "azs-net-lnphwbdj" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountrips.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountrips.json index 3487de0e7246..1b850d044605 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountrips.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountrips.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gbftfpvw.search.windows.net/indexes(\u0027xdajaxpn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-e1d416bccfe44a47abedaf4ff5b74ab2-e3b6e63e19e90a47-00", + "traceparent": "00-f7b71ce68ea29e4a8a86937ddf436802-99414607f09b684c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ "a424ae0d-2882-9bc5-4334-bdf36ab4310a", @@ -22,13 +23,13 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:50:54 GMT", - "elapsed-time": "100", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "9b42f2c7-8eb5-4131-9dc1-baf450076ef0", + "request-id": "1612f891-0878-4bd0-a967-3dd4cc8cf806", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": "\uFEFF10" @@ -36,7 +37,7 @@ ], "Variables": { "RandomSeed": "330260530", - "SearchIndexName": "xdajaxpn", - "SearchServiceName": "azs-net-gbftfpvw" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountripsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountripsAsync.json index f4c16903d8a7..281648d969a3 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountripsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/ClientRequestIdRountripsAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gbftfpvw.search.windows.net/indexes(\u0027xdajaxpn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7180f853f5cb1d4395d1d24655c87adb-0811086fa3d1294c-00", + "traceparent": "00-d0f01c98a09a9a4db1d8f41c098da36d-74ee1bc574a4e844-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ "91c76819-2313-a36c-0754-b0e74ecf69b2", @@ -22,13 +23,13 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:50:54 GMT", - "elapsed-time": "5", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "d5bf1caf-967d-4031-a1f4-bfdc31a5de32", + "request-id": "317a1f56-505a-4425-9c58-00387a8ca5a5", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": "\uFEFF10" @@ -36,7 +37,7 @@ ], "Variables": { "RandomSeed": "1684850376", - "SearchIndexName": "xdajaxpn", - "SearchServiceName": "azs-net-gbftfpvw" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCount.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCount.json index c63d8df490ab..a4d51cc89520 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCount.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCount.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gbftfpvw.search.windows.net/indexes(\u0027xdajaxpn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2f76e648ca26054daf96bca656bb5ef8-2d47e7962f0e0349-00", + "traceparent": "00-6b83173a2c97ed4aa8cfdfe6db36bffd-af4171a0e9ae884f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "04ce36d25a63d7f396c87d6107fb3733", "x-ms-return-client-request-id": "true" @@ -19,7 +20,7 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:50:54 GMT", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", @@ -33,7 +34,7 @@ ], "Variables": { "RandomSeed": "1899812036", - "SearchIndexName": "xdajaxpn", - "SearchServiceName": "azs-net-gbftfpvw" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCountAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCountAsync.json index d86bcffbe8b4..16e7bbd5aca2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetDocumentCountAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gbftfpvw.search.windows.net/indexes(\u0027xdajaxpn\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-fa5237664774aa4da4ea67b665697d04-3d98bfcf616a2046-00", + "traceparent": "00-f579f5b7c5e4c543a0ffa389bf9db186-599dd20c2d103f4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d3288d7ff70d1713de50a1c1dd2f20a8", "x-ms-return-client-request-id": "true" @@ -19,8 +20,8 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:50:54 GMT", - "elapsed-time": "4", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -33,7 +34,7 @@ ], "Variables": { "RandomSeed": "1772541862", - "SearchIndexName": "xdajaxpn", - "SearchServiceName": "azs-net-gbftfpvw" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountrips.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountrips.json index 55aba9efb290..7d2b51c1ec4e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountrips.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountrips.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-36b1db4a85b33e4ebe6d4c5df6667d15-2c1af0b37d78bf4e-00", + "traceparent": "00-a90e367307aaff4d94c38a7b8f853ef8-5e3078a30938b744-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ "68966ae8-323d-1ca5-12f0-8e47cdae07d4", @@ -20,22 +21,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Mon, 09 Mar 2020 03:33:04 GMT", - "elapsed-time": "72", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:14:48 GMT", + "elapsed-time": "29", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "ccdf8835-3e83-4aed-baa2-d52a32b6313f", + "request-id": "09ceaa4f-b87d-4fe2-b74a-b47730ef361a", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aquphcqr.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -51,7 +52,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -74,7 +75,7 @@ ], "Variables": { "RandomSeed": "1622410931", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountripsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountripsAsync.json index 2ccaeeafaa5f..d1dc7492f62a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountripsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/ClientRequestIdRountripsAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-91962546bb1e704a930417a6d7cbe47e-7de79d37e9effa49-00", + "traceparent": "00-3d59838a8ddc1649b77f263885463206-a13cacf9457aec48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ "f32f3b11-7b2c-df0f-c417-672b2950b49a", @@ -20,22 +21,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Mon, 09 Mar 2020 03:33:06 GMT", - "elapsed-time": "34", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:44 GMT", + "elapsed-time": "46", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "ed2f97a2-017e-4646-bde3-babf751b38f2", + "request-id": "298abe6c-2521-466e-8290-0ea20964ceaa", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aquphcqr.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -51,7 +52,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -74,7 +75,7 @@ ], "Variables": { "RandomSeed": "1481307319", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexer.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexer.json index f5afbbfb8b11..a42cd21fefa6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexer.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexer.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/datasources?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "226", + "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-d101e1bd274e2246aa0ac90fbdcb074b-cc38f403aae8614a-00", + "traceparent": "00-ca5a42eb9c5cb24f85b1871c065b8d71-be35230911f1eb4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -19,35 +20,35 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "adpnetsearchstg", + "name": "heathsrchstg", "type": "azureblob", "credentials": { - "connectionString": "DefaultEndpointsProtocol=https;AccountName=adpnetsearchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "ejlyochb" + "name": "gdnixkxc" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "363", + "Content-Length": "360", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:24:53 GMT", - "elapsed-time": "60", - "ETag": "W/\u00220x8D7DCF65A75B7DC\u0022", + "Date": "Sat, 25 Apr 2020 03:17:29 GMT", + "elapsed-time": "113", + "ETag": "W/\u00220x8D7E8C72FC7E1C5\u0022", "Expires": "-1", - "Location": "https://azs-net-crqluosy.search.windows.net/datasources(\u0027adpnetsearchstg\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-xswopklx.search.windows.net/datasources(\u0027heathsrchstg\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "ca4cde43-95fb-46c5-a89c-6c080ab3ca73", + "request-id": "e2a229bc-ba2a-4ea4-bf2e-d3170ad64e6b", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D7DCF65A75B7DC\u0022", - "name": "adpnetsearchstg", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#datasources/$entity", + "@odata.etag": "\u00220x8D7E8C72FC7E1C5\u0022", + "name": "heathsrchstg", "description": null, "type": "azureblob", "subtype": null, @@ -55,7 +56,7 @@ "connectionString": null }, "container": { - "name": "ejlyochb", + "name": "gdnixkxc", "query": null }, "dataChangeDetectionPolicy": null, @@ -63,15 +64,16 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "83", + "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-f1d7a18567fb3248b3f8b410d9c295b5-65208fbc3f6abb45-00", + "traceparent": "00-e3c7f96ea2b6684faf52743979f54a5e-92416e9fdb42f24d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -82,33 +84,33 @@ }, "RequestBody": { "name": "jyhrmyol", - "dataSourceName": "adpnetsearchstg", - "targetIndexName": "waicuimk" + "dataSourceName": "heathsrchstg", + "targetIndexName": "tciydxfg" }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "354", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:25:03 GMT", - "elapsed-time": "10559", - "ETag": "W/\u00220x8D7DCF6609EBEF1\u0022", + "Date": "Sat, 25 Apr 2020 03:17:39 GMT", + "elapsed-time": "10071", + "ETag": "W/\u00220x8D7E8C735AA9767\u0022", "Expires": "-1", - "Location": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "690b2d19-8594-4428-9828-f2fb1aa7d7e4", + "request-id": "83f023d3-e04d-42c3-aaae-4cc63533590c", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D7DCF6609EBEF1\u0022", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#indexers/$entity", + "@odata.etag": "\u00220x8D7E8C735AA9767\u0022", "name": "jyhrmyol", "description": null, - "dataSourceName": "adpnetsearchstg", + "dataSourceName": "heathsrchstg", "skillsetName": null, - "targetIndexName": "waicuimk", + "targetIndexName": "tciydxfg", "disabled": null, "schedule": null, "parameters": null, @@ -118,17 +120,18 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "209", + "Content-Length": "206", "Content-Type": "application/json", - "If-Match": "\u00220x8D7DCF6609EBEF1\u0022", + "If-Match": "\u00220x8D7E8C735AA9767\u0022", "Prefer": "return=representation", - "traceparent": "00-e809b7a5edcee8428e8aa66a2015d04a-50b957c1ad12364a-00", + "traceparent": "00-a6d6d0f103fe314e8a38690d6ee0cf5e-fddb14f05f657342-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -140,35 +143,35 @@ "RequestBody": { "name": "jyhrmyol", "description": "Updated description", - "dataSourceName": "adpnetsearchstg", - "targetIndexName": "waicuimk", + "dataSourceName": "heathsrchstg", + "targetIndexName": "tciydxfg", "fieldMappings": [], "outputFieldMappings": [], - "@odata.etag": "\u00220x8D7DCF6609EBEF1\u0022" + "@odata.etag": "\u00220x8D7E8C735AA9767\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "374", + "Content-Length": "371", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:25:04 GMT", - "elapsed-time": "170", - "ETag": "W/\u00220x8D7DCF6610CFDBC\u0022", + "Date": "Sat, 25 Apr 2020 03:17:39 GMT", + "elapsed-time": "115", + "ETag": "W/\u00220x8D7E8C735EE1981\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "b9b650af-6d6a-4283-92fa-a0d77fcb5705", + "request-id": "aab703bc-4b1e-4422-9530-9e9cb90e8b5c", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D7DCF6610CFDBC\u0022", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#indexers/$entity", + "@odata.etag": "\u00220x8D7E8C735EE1981\u0022", "name": "jyhrmyol", "description": "Updated description", - "dataSourceName": "adpnetsearchstg", + "dataSourceName": "heathsrchstg", "skillsetName": null, - "targetIndexName": "waicuimk", + "targetIndexName": "tciydxfg", "disabled": null, "schedule": null, "parameters": null, @@ -178,13 +181,14 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-21afcffc7643fa48be74508ef8478ba6-7a8ddb787157e940-00", + "traceparent": "00-0c0a081a0d3a374aa4b9408cec473bcd-94452d806f14994e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -197,25 +201,25 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "551", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 10 Apr 2020 02:25:14 GMT", - "elapsed-time": "12", + "Content-Length": "552", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 03:17:49 GMT", + "elapsed-time": "86", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "5ed4e3df-9a28-432d-a23d-3395fe8bb06e", + "request-id": "89c844a9-a1f1-4302-9aac-69ece4f7589e", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", "name": "jyhrmyol", "status": "running", "lastResult": { "status": "inProgress", "errorMessage": null, - "startTime": "2020-04-10T02:25:10.67Z", + "startTime": "2020-04-25T03:17:40.334Z", "endTime": null, "itemsProcessed": 0, "itemsFailed": 0, @@ -234,13 +238,14 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-9d8463df4060df459cff8956009dfdda-72427da98aa88e44-00", + "traceparent": "00-2a4c78c7052dd441bfdab835e7196c95-c417713a75942847-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -254,29 +259,29 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "1515", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 10 Apr 2020 02:25:24 GMT", - "elapsed-time": "19", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 03:18:00 GMT", + "elapsed-time": "62", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "7b92dd40-7239-46db-896d-b402590be50a", + "request-id": "810c30ce-849f-47ba-b142-9467a8428704", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", "name": "jyhrmyol", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:25:10.67Z", - "endTime": "2020-04-10T02:25:20.543Z", + "startTime": "2020-04-25T03:17:40.349Z", + "endTime": "2020-04-25T03:17:51.15Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:25:10.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:17:40.365Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -285,12 +290,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:25:10.67Z", - "endTime": "2020-04-10T02:25:20.543Z", + "startTime": "2020-04-25T03:17:40.349Z", + "endTime": "2020-04-25T03:17:51.15Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:25:10.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:17:40.365Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -304,13 +309,14 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.run?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.run?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a016bb97dc8b3949bfc6b7548cf4d197-d61902e542fe3749-00", + "traceparent": "00-8d466478f446a947861180c9b1b69997-fec4aa629aff2947-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -324,23 +330,24 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 10 Apr 2020 02:25:24 GMT", - "elapsed-time": "133", + "Date": "Sat, 25 Apr 2020 03:18:00 GMT", + "elapsed-time": "178", "Expires": "-1", "Pragma": "no-cache", - "request-id": "cb9d016c-9dd8-42a3-b66a-56149ac6d064", + "request-id": "f591e8ce-963b-4f3f-a78a-0935a677320b", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": [] }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexers(\u0027jyhrmyol\u0027)/search.status?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a950d45b2e93bb419dd1c50e9984c2bb-facc257a2c37d346-00", + "traceparent": "00-89855ca6721ab246a6c748728992ecde-6236a70006cb674d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -354,29 +361,29 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "2121", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 10 Apr 2020 02:25:33 GMT", - "elapsed-time": "12", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 03:18:10 GMT", + "elapsed-time": "87", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "12bb09f8-8fb3-41ee-9525-57c68cc933f5", + "request-id": "bc98b395-c331-4175-91f8-7928c4dada25", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-crqluosy.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-xswopklx.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", "name": "jyhrmyol", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:25:24.994Z", - "endTime": "2020-04-10T02:25:26.885Z", + "startTime": "2020-04-25T03:18:00.595Z", + "endTime": "2020-04-25T03:18:01.579Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-10T02:24:40.685Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:25:25.026Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:24:55.0261983\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:24:55.0261983\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-25T03:17:10.365Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:00.595Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:17:30.5950233\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:17:30.5950233\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -385,12 +392,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:25:24.994Z", - "endTime": "2020-04-10T02:25:26.885Z", + "startTime": "2020-04-25T03:18:00.595Z", + "endTime": "2020-04-25T03:18:01.579Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-10T02:24:40.685Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:25:25.026Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:24:55.0261983\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:24:55.0261983\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-25T03:17:10.365Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:00.595Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:17:30.5950233\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:17:30.5950233\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -398,12 +405,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:25:10.67Z", - "endTime": "2020-04-10T02:25:20.543Z", + "startTime": "2020-04-25T03:17:40.349Z", + "endTime": "2020-04-25T03:17:51.15Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:25:10.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:24:40.6857011\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:17:40.365Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:17:10.3655593\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -417,12 +424,13 @@ } }, { - "RequestUri": "https://azs-net-crqluosy.search.windows.net/indexes(\u0027waicuimk\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xswopklx.search.windows.net/indexes(\u0027tciydxfg\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -437,24 +445,29 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 10 Apr 2020 02:25:33 GMT", - "elapsed-time": "4", + "Date": "Sat, 25 Apr 2020 03:18:10 GMT", + "elapsed-time": "199", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "ceed8504-c204-43d6-8b22-fc2a8bd05d73", + "request-id": "8f1c6a91-4017-4761-85bc-47c89400aba5", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": "\uFEFF10" } ], "Variables": { - "AZURE_SEARCH_STORAGE_KEY": "Sanitized", - "AZURE_SEARCH_STORAGE_NAME": "adpnetsearchstg", - "BlobContainerName": "ejlyochb", + "BlobContainerName": "gdnixkxc", + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1401021797", - "SearchIndexName": "waicuimk", - "SearchServiceName": "azs-net-crqluosy" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "tciydxfg", + "SearchServiceName": "azs-net-xswopklx", + "SEARCH_STORAGE_KEY": "Sanitized", + "SEARCH_STORAGE_NAME": "heathsrchstg", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexerAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexerAsync.json index 682641a1b16c..5b62dab50bae 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexerAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateAzureBlobIndexerAsync.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/datasources?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "226", + "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-81f9e9aaa181b843a93ab0060f46851a-a3baf92cce3fc54b-00", + "traceparent": "00-fd3ec9b3b8055b448ba68685868844ac-3c48246be59de942-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -19,35 +20,35 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "adpnetsearchstg", + "name": "heathsrchstg", "type": "azureblob", "credentials": { - "connectionString": "DefaultEndpointsProtocol=https;AccountName=adpnetsearchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "vjkoiojl" + "name": "fivqpvsq" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "363", + "Content-Length": "360", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:26:02 GMT", - "elapsed-time": "65", - "ETag": "W/\u00220x8D7DCF6836746C7\u0022", + "Date": "Sat, 25 Apr 2020 03:18:39 GMT", + "elapsed-time": "80", + "ETag": "W/\u00220x8D7E8C759A5744A\u0022", "Expires": "-1", - "Location": "https://azs-net-fsbxkrts.search.windows.net/datasources(\u0027adpnetsearchstg\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-fybcplca.search.windows.net/datasources(\u0027heathsrchstg\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "dbcd8435-c321-4c9f-a3ae-87c321f39dd4", + "request-id": "4ff789b0-1791-48fd-b428-e73dca7d8ecb", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fsbxkrts.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D7DCF6836746C7\u0022", - "name": "adpnetsearchstg", + "@odata.context": "https://azs-net-fybcplca.search.windows.net/$metadata#datasources/$entity", + "@odata.etag": "\u00220x8D7E8C759A5744A\u0022", + "name": "heathsrchstg", "description": null, "type": "azureblob", "subtype": null, @@ -55,7 +56,7 @@ "connectionString": null }, "container": { - "name": "vjkoiojl", + "name": "fivqpvsq", "query": null }, "dataChangeDetectionPolicy": null, @@ -63,15 +64,16 @@ } }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexers?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexers?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "83", + "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-0ec5d87a4d9487468f191593664561da-5ab53d179ee37542-00", + "traceparent": "00-78ab0b54e65d0240b2d2ce037c893421-bcbaa008f6d8ac4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -82,33 +84,33 @@ }, "RequestBody": { "name": "jgiorpcc", - "dataSourceName": "adpnetsearchstg", - "targetIndexName": "tqkifeie" + "dataSourceName": "heathsrchstg", + "targetIndexName": "rmksbebb" }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "354", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:26:11 GMT", - "elapsed-time": "9426", - "ETag": "W/\u00220x8D7DCF688E102D0\u0022", + "Date": "Sat, 25 Apr 2020 03:18:41 GMT", + "elapsed-time": "1666", + "ETag": "W/\u00220x8D7E8C75A8B9F46\u0022", "Expires": "-1", - "Location": "https://azs-net-fsbxkrts.search.windows.net/indexers(\u0027jgiorpcc\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-fybcplca.search.windows.net/indexers(\u0027jgiorpcc\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "a9fec215-8fef-4679-bcda-b45e40785d5a", + "request-id": "5ca53712-9db5-4bb9-bd36-bb6b20a65477", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fsbxkrts.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D7DCF688E102D0\u0022", + "@odata.context": "https://azs-net-fybcplca.search.windows.net/$metadata#indexers/$entity", + "@odata.etag": "\u00220x8D7E8C75A8B9F46\u0022", "name": "jgiorpcc", "description": null, - "dataSourceName": "adpnetsearchstg", + "dataSourceName": "heathsrchstg", "skillsetName": null, - "targetIndexName": "tqkifeie", + "targetIndexName": "rmksbebb", "disabled": null, "schedule": null, "parameters": null, @@ -118,17 +120,18 @@ } }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexers(\u0027jgiorpcc\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexers(\u0027jgiorpcc\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "209", + "Content-Length": "206", "Content-Type": "application/json", - "If-Match": "\u00220x8D7DCF688E102D0\u0022", + "If-Match": "\u00220x8D7E8C75A8B9F46\u0022", "Prefer": "return=representation", - "traceparent": "00-8bf7ee71173913448955761cfaa1ca1a-57ae2495b9ea7f4a-00", + "traceparent": "00-1abde3252c281f4da00f1eef1e14b8db-8d78f03ba577674d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -140,35 +143,35 @@ "RequestBody": { "name": "jgiorpcc", "description": "Updated description", - "dataSourceName": "adpnetsearchstg", - "targetIndexName": "tqkifeie", + "dataSourceName": "heathsrchstg", + "targetIndexName": "rmksbebb", "fieldMappings": [], "outputFieldMappings": [], - "@odata.etag": "\u00220x8D7DCF688E102D0\u0022" + "@odata.etag": "\u00220x8D7E8C75A8B9F46\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "374", + "Content-Length": "371", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 10 Apr 2020 02:26:11 GMT", - "elapsed-time": "128", - "ETag": "W/\u00220x8D7DCF6891D5341\u0022", + "Date": "Sat, 25 Apr 2020 03:18:41 GMT", + "elapsed-time": "116", + "ETag": "W/\u00220x8D7E8C75AC11427\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "fc535fd9-d185-4fc7-b27d-2d78b96e715c", + "request-id": "4867885b-2169-4b22-941a-3b748b564b13", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fsbxkrts.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D7DCF6891D5341\u0022", + "@odata.context": "https://azs-net-fybcplca.search.windows.net/$metadata#indexers/$entity", + "@odata.etag": "\u00220x8D7E8C75AC11427\u0022", "name": "jgiorpcc", "description": "Updated description", - "dataSourceName": "adpnetsearchstg", + "dataSourceName": "heathsrchstg", "skillsetName": null, - "targetIndexName": "tqkifeie", + "targetIndexName": "rmksbebb", "disabled": null, "schedule": null, "parameters": null, @@ -178,13 +181,14 @@ } }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.status?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-cf7dcbfde570414c9e56b16519947d66-2e361bdbd1cf6144-00", + "traceparent": "00-af5551c60ca0b943975e1388ea00f981-b0900be071a1d348-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -197,30 +201,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1511", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 10 Apr 2020 02:26:21 GMT", - "elapsed-time": "15", + "Content-Length": "1517", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 03:18:51 GMT", + "elapsed-time": "19", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "9739397b-a226-4f74-95b0-f150feef685d", + "request-id": "03206a81-c929-426e-829a-2be55c25d9a6", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fsbxkrts.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-fybcplca.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", "name": "jgiorpcc", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:26:14.7Z", - "endTime": "2020-04-10T02:26:16.31Z", + "startTime": "2020-04-25T03:18:44.256Z", + "endTime": "2020-04-25T03:18:46.131Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:26:14.721Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:44.272Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -229,12 +233,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:26:14.7Z", - "endTime": "2020-04-10T02:26:16.31Z", + "startTime": "2020-04-25T03:18:44.256Z", + "endTime": "2020-04-25T03:18:46.131Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:26:14.721Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:44.272Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -248,13 +252,14 @@ } }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.run?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.run?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-dec4a64d6531e348aeecd0d581f7f4cb-620e0274de513743-00", + "traceparent": "00-3802ce9cd319a0448250a882ceab13c7-34fea66e8daddb41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -268,23 +273,24 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 10 Apr 2020 02:26:21 GMT", - "elapsed-time": "72", + "Date": "Sat, 25 Apr 2020 03:18:51 GMT", + "elapsed-time": "68", "Expires": "-1", "Pragma": "no-cache", - "request-id": "ff9265a3-7b53-4f95-b36d-73014e47d3d1", + "request-id": "f28b5071-8037-4368-9002-98f4314ef2d5", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": [] }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexers(\u0027jgiorpcc\u0027)/search.status?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-17448514c3ca4942bcf0d983849ba6ec-4fe897cfc3357e42-00", + "traceparent": "00-771c043de544f549a0c21ccd1fd52d7e-d9826ad023459748-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -297,30 +303,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2119", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 10 Apr 2020 02:26:31 GMT", - "elapsed-time": "57", + "Content-Length": "2120", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 03:19:00 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "43a75de3-9f76-4c30-8817-e79794fb55a8", + "request-id": "cddb385b-8879-4050-81bb-cbb8cb1dd84c", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-fsbxkrts.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-fybcplca.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", "name": "jgiorpcc", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:26:24.763Z", - "endTime": "2020-04-10T02:26:25.622Z", + "startTime": "2020-04-25T03:18:54.605Z", + "endTime": "2020-04-25T03:18:55.48Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-10T02:25:44.721Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:26:24.778Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:25:54.7787611\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:25:54.7787611\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-25T03:18:14.272Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:54.621Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:18:24.6212683\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:18:24.6212683\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -329,12 +335,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:26:24.763Z", - "endTime": "2020-04-10T02:26:25.622Z", + "startTime": "2020-04-25T03:18:54.605Z", + "endTime": "2020-04-25T03:18:55.48Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-10T02:25:44.721Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:26:24.778Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:25:54.7787611\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:25:54.7787611\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-04-25T03:18:14.272Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:54.621Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:18:24.6212683\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:18:24.6212683\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -342,12 +348,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-04-10T02:26:14.7Z", - "endTime": "2020-04-10T02:26:16.31Z", + "startTime": "2020-04-25T03:18:44.256Z", + "endTime": "2020-04-25T03:18:46.131Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-10T02:26:14.721Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-10T02:25:44.7211405\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-04-25T03:18:44.272Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-04-25T03:18:14.2722955\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -361,12 +367,13 @@ } }, { - "RequestUri": "https://azs-net-fsbxkrts.search.windows.net/indexes(\u0027tqkifeie\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-fybcplca.search.windows.net/indexes(\u0027rmksbebb\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200409.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": [ @@ -381,24 +388,29 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 10 Apr 2020 02:26:31 GMT", - "elapsed-time": "4", + "Date": "Sat, 25 Apr 2020 03:19:01 GMT", + "elapsed-time": "203", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "a7cbb94d-eabf-4d07-9688-d4b0914d70b9", + "request-id": "1203c6ab-393b-44e0-8a9b-cbf3d13cc2f9", "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": "\uFEFF10" } ], "Variables": { - "AZURE_SEARCH_STORAGE_KEY": "Sanitized", - "AZURE_SEARCH_STORAGE_NAME": "adpnetsearchstg", - "BlobContainerName": "vjkoiojl", + "BlobContainerName": "fivqpvsq", + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "939854059", - "SearchIndexName": "tqkifeie", - "SearchServiceName": "azs-net-fsbxkrts" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "rmksbebb", + "SearchServiceName": "azs-net-fybcplca", + "SEARCH_STORAGE_KEY": "Sanitized", + "SEARCH_STORAGE_NAME": "heathsrchstg", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndex.json index bf530af2ff7b..7ec5af36d86a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndex.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-kupqasmr.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-qjxgjbyv.search.windows.net/indexes?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-acdacd631b2f2f418a57bed049109c71-fe0a0dce2d059e43-00", + "traceparent": "00-0f6d64d25f502f489c792de36dd6a4f4-24701031b630d841-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200327.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5cad1ef4d125aded2bffeebfd431dec8", "x-ms-return-client-request-id": "true" @@ -308,11 +309,11 @@ "Cache-Control": "no-cache", "Content-Length": "6158", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sat, 28 Mar 2020 00:04:15 GMT", - "elapsed-time": "1367", - "ETag": "W/\u00220x8D7D2AB8E40C0A9\u0022", + "Date": "Sat, 25 Apr 2020 01:16:04 GMT", + "elapsed-time": "2221", + "ETag": "W/\u00220x8D7E8B63A28F0FD\u0022", "Expires": "-1", - "Location": "https://azs-net-kupqasmr.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-qjxgjbyv.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -320,8 +321,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kupqasmr.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7D2AB8E40C0A9\u0022", + "@odata.context": "https://azs-net-qjxgjbyv.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B63A28F0FD\u0022", "name": "wvhobppu", "defaultScoringProfile": null, "fields": [ @@ -717,7 +718,12 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "96077012", - "SearchServiceName": "azs-net-kupqasmr" + "RESOURCE_GROUP": "heaths-search", + "SearchServiceName": "azs-net-qjxgjbyv", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndexAsync.json index ba023ea03c9d..8d84a5de0a51 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CreateIndexAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qsrptdqe.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xseyhyuo.search.windows.net/indexes?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-95f0422e826eff4b96463ce6120272cd-d5fb4487ecea2146-00", + "traceparent": "00-544e07bbc41e774786de548e8b529519-b6ee86b57ccee041-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200327.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "aa80379a73db164d8f4210e420ecefbc", "x-ms-return-client-request-id": "true" @@ -308,11 +309,11 @@ "Cache-Control": "no-cache", "Content-Length": "6158", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Sat, 28 Mar 2020 00:04:21 GMT", - "elapsed-time": "1359", - "ETag": "W/\u00220x8D7D2AB91B12A58\u0022", + "Date": "Sat, 25 Apr 2020 01:17:37 GMT", + "elapsed-time": "1281", + "ETag": "W/\u00220x8D7E8B6712162AC\u0022", "Expires": "-1", - "Location": "https://azs-net-qsrptdqe.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-xseyhyuo.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -320,8 +321,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qsrptdqe.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7D2AB91B12A58\u0022", + "@odata.context": "https://azs-net-xseyhyuo.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B6712162AC\u0022", "name": "tkubrcbf", "defaultScoringProfile": null, "fields": [ @@ -717,7 +718,12 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1121409174", - "SearchServiceName": "azs-net-qsrptdqe" + "RESOURCE_GROUP": "heaths-search", + "SearchServiceName": "azs-net-xseyhyuo", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMaps.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMaps.json index fee590cbe1f0..eb1d1a605e8b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMaps.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMaps.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "69", "Content-Type": "application/json", - "traceparent": "00-17baf5e620b03f408e3ffc9a03bf7788-cd7ec5412e3fc54f-00", + "traceparent": "00-e0e49072c5ec29409faf3e9c8934cf17-af40339dab17ed4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e774d64a0e1ee1ed26d81ec8b16be261", @@ -25,11 +26,11 @@ "Cache-Control": "no-cache", "Content-Length": "216", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 17 Apr 2020 01:57:43 GMT", - "elapsed-time": "37", - "ETag": "W/\u00220x8D7E272B830B300\u0022", + "Date": "Sat, 25 Apr 2020 01:16:07 GMT", + "elapsed-time": "78", + "ETag": "W/\u00220x8D7E8B63B38235F\u0022", "Expires": "-1", - "Location": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -37,8 +38,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B830B300\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B63B38235F\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "msft=\u003EMicrosoft", @@ -46,17 +47,18 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "72", "Content-Type": "application/json", - "If-Match": "\u00220x8D7E272B830B300\u0022", + "If-Match": "\u00220x8D7E8B63B38235F\u0022", "Prefer": "return=representation", - "traceparent": "00-539e00883da10a4ca494d6d301dad61d-ed70dcb933ffaa48-00", + "traceparent": "00-ceade279b9d13b459f996fe1d49d3ad6-abdf212f8408c74a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "890ba43bad9d8bc6db7ea8d0f34ce722", @@ -72,9 +74,9 @@ "Cache-Control": "no-cache", "Content-Length": "219", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 17 Apr 2020 01:57:43 GMT", - "elapsed-time": "15", - "ETag": "W/\u00220x8D7E272B8441775\u0022", + "Date": "Sat, 25 Apr 2020 01:16:07 GMT", + "elapsed-time": "26", + "ETag": "W/\u00220x8D7E8B63B40D788\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -83,8 +85,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B8441775\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B63B40D788\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -92,13 +94,14 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-22784ee66d114f4fbaced681bc04deb5-7c81d95f2a475645-00", + "traceparent": "00-d4865a5de954054797ceacf8a16ab79f-0b99fe6060d14d49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d6d9fa27c35a394621cb45794f7a1697", @@ -109,9 +112,9 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "122", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 17 Apr 2020 01:57:43 GMT", - "elapsed-time": "5", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:07 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -120,7 +123,7 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps(name)", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps(name)", "value": [ { "name": "vsluedsr" @@ -129,13 +132,14 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7fb6a82cd3a72e46b5dc9ce7aecb630f-710b3d7574ed6f43-00", + "traceparent": "00-34a4cb866e701143a15cbc98b8d737a0-32aa1d390efb614e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9a86040cbd479da90fe80c9f661deeda", @@ -146,10 +150,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 17 Apr 2020 01:57:43 GMT", - "elapsed-time": "6", - "ETag": "W/\u00220x8D7E272B8441775\u0022", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:07 GMT", + "elapsed-time": "14", + "ETag": "W/\u00220x8D7E8B63B40D788\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -158,8 +162,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B8441775\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B63B40D788\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -167,14 +171,15 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D7E272B8441775\u0022", - "traceparent": "00-081f1168e18fb64e8b0f431cc60940b9-85fd73e665bccf40-00", + "If-Match": "\u00220x8D7E8B63B40D788\u0022", + "traceparent": "00-a49dab46772b4a46b998ad184d9ab9d5-48673e883c36dd44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b7a0fcf00c9278065ed268d2674c3c60", @@ -184,8 +189,8 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 17 Apr 2020 01:57:43 GMT", - "elapsed-time": "12", + "Date": "Sat, 25 Apr 2020 01:16:07 GMT", + "elapsed-time": "15", "Expires": "-1", "Pragma": "no-cache", "request-id": "b7a0fcf0-0c92-7806-5ed2-68d2674c3c60", @@ -196,7 +201,7 @@ ], "Variables": { "RandomSeed": "1266633341", - "SearchIndexName": "ibpxiiit", - "SearchServiceName": "azs-net-plgbxdgs" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMapsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMapsAsync.json index 5b8aac88aa7d..f5e756781728 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMapsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/CrudSynonymMapsAsync.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "69", "Content-Type": "application/json", - "traceparent": "00-e4cb1a5dfe4a6d4ca6aa9b5d26ab71e7-1585911f586b9744-00", + "traceparent": "00-83dd9aba95fb8f44b1acb842a6e5fcd4-fb99e68c4f3f5549-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c02069d540fd192627e03b9f134bed62", @@ -25,11 +26,11 @@ "Cache-Control": "no-cache", "Content-Length": "216", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 17 Apr 2020 01:57:44 GMT", - "elapsed-time": "19", - "ETag": "W/\u00220x8D7E272B8796203\u0022", + "Date": "Sat, 25 Apr 2020 01:17:38 GMT", + "elapsed-time": "30", + "ETag": "W/\u00220x8D7E8B6720B287C\u0022", "Expires": "-1", - "Location": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -37,8 +38,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B8796203\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B6720B287C\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "msft=\u003EMicrosoft", @@ -46,17 +47,18 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "72", "Content-Type": "application/json", - "If-Match": "\u00220x8D7E272B8796203\u0022", + "If-Match": "\u00220x8D7E8B6720B287C\u0022", "Prefer": "return=representation", - "traceparent": "00-4d210369c358ae42a2bd0dd85dbdddda-028350aded5eef4e-00", + "traceparent": "00-7e20f39303876e47b0c7c4efdd6bbc9a-cc34f52511f0a64c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0b9c28133e0e9e04f52c78921f0b1fc4", @@ -72,9 +74,9 @@ "Cache-Control": "no-cache", "Content-Length": "219", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 17 Apr 2020 01:57:44 GMT", - "elapsed-time": "15", - "ETag": "W/\u00220x8D7E272B8810482\u0022", + "Date": "Sat, 25 Apr 2020 01:17:38 GMT", + "elapsed-time": "21", + "ETag": "W/\u00220x8D7E8B672142AD8\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -83,8 +85,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B8810482\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B672142AD8\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -92,13 +94,14 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-030c1b01f0db2b4ab5eb02ff698e6b63-48dfd93c203d9548-00", + "traceparent": "00-96dd2aaaa1945d42889110f03f41c2d8-774b53eb098daf47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "36a22e1a3354ac4d565b1f8fdf1033d3", @@ -109,9 +112,9 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "122", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 17 Apr 2020 01:57:44 GMT", - "elapsed-time": "9", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:17:38 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -120,7 +123,7 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps(name)", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps(name)", "value": [ { "name": "byaqwdpt" @@ -129,13 +132,14 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ef85446a239276498eb8b649cbb07c89-7969829700382941-00", + "traceparent": "00-2ea09dcf0fd16743a6b52fe88515224a-2e205ed3d6e24749-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5043667597c197906482cad0c793f91b", @@ -146,10 +150,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "219", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Fri, 17 Apr 2020 01:57:44 GMT", - "elapsed-time": "5", - "ETag": "W/\u00220x8D7E272B8810482\u0022", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:17:38 GMT", + "elapsed-time": "6", + "ETag": "W/\u00220x8D7E8B672142AD8\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -158,8 +162,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-plgbxdgs.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7E272B8810482\u0022", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D7E8B672142AD8\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -167,14 +171,15 @@ } }, { - "RequestUri": "https://azs-net-plgbxdgs.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D7E272B8810482\u0022", - "traceparent": "00-767a328e2a30504fb1582bcac4e0902c-789c5d5a0e4dd440-00", + "If-Match": "\u00220x8D7E8B672142AD8\u0022", + "traceparent": "00-48a0516c360d9d4aa4cc1ac7bf62170e-31ac64a5751f9b47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200416.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e58477c0b6a8df0ddbf0b5b31e74bee5", @@ -184,8 +189,8 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 17 Apr 2020 01:57:44 GMT", - "elapsed-time": "10", + "Date": "Sat, 25 Apr 2020 01:17:38 GMT", + "elapsed-time": "11", "Expires": "-1", "Pragma": "no-cache", "request-id": "e58477c0-b6a8-df0d-dbf0-b5b31e74bee5", @@ -196,7 +201,7 @@ ], "Variables": { "RandomSeed": "43964750", - "SearchIndexName": "ibpxiiit", - "SearchServiceName": "azs-net-plgbxdgs" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndex.json index 6acba8b24963..81b85fbf81e6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndex.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-sahucyha.search.windows.net/indexes(\u0027kxklglir\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yrbgrolr.search.windows.net/indexes(\u0027ravlytke\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a71de8ccbf839b438672faae51ec8edb-d73dfb39e86fdb45-00", + "traceparent": "00-055317ca7a1b5c4ba035709777355f35-8f3d69068f13b349-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200327.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7b47ca4dbdfaf4d11dfd7df45a34096b", "x-ms-return-client-request-id": "true" @@ -18,10 +19,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6158", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sat, 28 Mar 2020 00:13:24 GMT", - "elapsed-time": "44", - "ETag": "W/\u00220x8D7D2ACC6E5387D\u0022", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:34 GMT", + "elapsed-time": "28", + "ETag": "W/\u00220x8D7E8B63E0DD31F\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -30,9 +31,9 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-sahucyha.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7D2ACC6E5387D\u0022", - "name": "kxklglir", + "@odata.context": "https://azs-net-yrbgrolr.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B63E0DD31F\u0022", + "name": "ravlytke", "defaultScoringProfile": null, "fields": [ { @@ -427,8 +428,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "436223391", - "SearchIndexName": "kxklglir", - "SearchServiceName": "azs-net-sahucyha" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ravlytke", + "SearchServiceName": "azs-net-yrbgrolr", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexAsync.json index c2d71c37c87c..4fde19585a44 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-viyaxldn.search.windows.net/indexes(\u0027xoeydefs\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-twlpkfbv.search.windows.net/indexes(\u0027ssambgjc\u0027)?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-d7f20b4de9121141a2de7ba73e44340e-3d5a033d7cdcd240-00", + "traceparent": "00-332b527efbcdff4cac61cb9341964632-fa5163a9e08af44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200327.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "94327a2c77d31fee9f75b5eab600bb4c", "x-ms-return-client-request-id": "true" @@ -18,10 +19,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6158", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Sat, 28 Mar 2020 00:13:54 GMT", - "elapsed-time": "49", - "ETag": "W/\u00220x8D7D2ACD92DA1F4\u0022", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:18:05 GMT", + "elapsed-time": "53", + "ETag": "W/\u00220x8D7E8B6746C0263\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -30,9 +31,9 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-viyaxldn.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7D2ACD92DA1F4\u0022", - "name": "xoeydefs", + "@odata.context": "https://azs-net-twlpkfbv.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B6746C0263\u0022", + "name": "ssambgjc", "defaultScoringProfile": null, "fields": [ { @@ -427,8 +428,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "256342603", - "SearchIndexName": "xoeydefs", - "SearchServiceName": "azs-net-viyaxldn" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ssambgjc", + "SearchServiceName": "azs-net-twlpkfbv", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexes.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexes.json index 8f988d4f40d0..1134db7ca7c9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexes.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexes.json @@ -1,12 +1,13 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ypwrygpr.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200422.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e88bbfcc516ee73040fb1420e7a9ee12", @@ -17,9 +18,9 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6165", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Wed, 22 Apr 2020 23:17:51 GMT", - "elapsed-time": "152", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:36 GMT", + "elapsed-time": "48", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28,11 +29,11 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ypwrygpr.search.windows.net/$metadata#indexes(*)", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#indexes(*)", "value": [ { - "@odata.etag": "\u00220x8D7E71352C81C3C\u0022", - "name": "kmjauxxu", + "@odata.etag": "\u00220x8D7E8B26C195970\u0022", + "name": "mesaejwj", "defaultScoringProfile": null, "fields": [ { @@ -429,13 +430,8 @@ } ], "Variables": { - "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", - "LOCATION": "westus2", "RandomSeed": "230027432", - "RESOURCE_GROUP": "heaths-search", - "SearchIndexName": "kmjauxxu", - "SearchServiceName": "azs-net-ypwrygpr", - "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", - "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesAsync.json index 63e023f0f0db..f7daa439ee18 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesAsync.json @@ -1,12 +1,13 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ypwrygpr.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200422.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "df603cdb3a3b95a3bc0ad41634fa28f0", @@ -17,9 +18,9 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6165", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Wed, 22 Apr 2020 23:17:51 GMT", - "elapsed-time": "34", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:18:07 GMT", + "elapsed-time": "50", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28,11 +29,11 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ypwrygpr.search.windows.net/$metadata#indexes(*)", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#indexes(*)", "value": [ { - "@odata.etag": "\u00220x8D7E71352C81C3C\u0022", - "name": "kmjauxxu", + "@odata.etag": "\u00220x8D7E8B26C195970\u0022", + "name": "mesaejwj", "defaultScoringProfile": null, "fields": [ { @@ -430,7 +431,7 @@ ], "Variables": { "RandomSeed": "347410179", - "SearchIndexName": "kmjauxxu", - "SearchServiceName": "azs-net-ypwrygpr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesNextPageThrowsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesNextPageThrowsAsync.json index 0154a6820c03..4878f1b0916f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesNextPageThrowsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetIndexesNextPageThrowsAsync.json @@ -1,13 +1,8 @@ { "Entries": [], "Variables": { - "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", - "LOCATION": "westus2", "RandomSeed": "1502897414", - "RESOURCE_GROUP": "heaths-search", - "SearchIndexName": "rnoiluqs", - "SearchServiceName": "azs-net-qbhattkf", - "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", - "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatistics.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatistics.json index 7740231ad17d..6511f818905d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatistics.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatistics.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-44a11dedfe5b6b4ba4e610f6ae98f925-1ddc1f869ba1e14c-00", + "traceparent": "00-36773d736c49e642a7e77e3e01b07ca8-71352524387c3e4e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "352f4c5b46c6db9183c2d78ad0a51379", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Mon, 09 Mar 2020 03:33:04 GMT", - "elapsed-time": "25", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:16:36 GMT", + "elapsed-time": "50", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +30,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aquphcqr.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +49,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +72,7 @@ ], "Variables": { "RandomSeed": "1735959094", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatisticsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatisticsAsync.json index 2f688f676781..8020b3fe4585 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatisticsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/GetServiceStatisticsAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/servicestats?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ac27fc04eace9c47ba4e53bb9db914dc-5ef34848641be240-00", + "traceparent": "00-3d1ffd5efc20ec4ebc8f94c34e676893-e83d1f2b73c8f744-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c8229c16880f099da1539c8a7c7acb40", "x-ms-return-client-request-id": "true" @@ -17,10 +18,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "581", - "Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true", - "Date": "Mon, 09 Mar 2020 03:33:06 GMT", - "elapsed-time": "25", + "Content-Length": "586", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Sat, 25 Apr 2020 01:18:07 GMT", + "elapsed-time": "33", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -29,10 +30,10 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-aquphcqr.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-jcswnkcn.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", "counters": { "documentCount": { - "usage": 0, + "usage": 10, "quota": null }, "indexesCount": { @@ -48,7 +49,7 @@ "quota": 3 }, "storageSize": { - "usage": 0, + "usage": 38732, "quota": 52428800 }, "synonymMaps": { @@ -71,7 +72,7 @@ ], "Variables": { "RandomSeed": "1636339797", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipeline.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipeline.json index adfd151e1e92..ba3cfd64cab2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipeline.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipeline.json @@ -1,13 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/indexes(\u0027laieordg\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bb0245badfc1f18ca36d44f127534217", "x-ms-return-client-request-id": "true" @@ -18,8 +19,8 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:33:06 GMT", - "elapsed-time": "49", + "Date": "Sat, 25 Apr 2020 01:16:36 GMT", + "elapsed-time": "41", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -32,7 +33,7 @@ ], "Variables": { "RandomSeed": "1344081635", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipelineAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipelineAsync.json index 2433ee3e769f..c4ace7e64f9b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipelineAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/IndexSharesPipelineAsync.json @@ -1,13 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-aquphcqr.search.windows.net/indexes(\u0027laieordg\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/$count?api-version=2019-05-06-Preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200308.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "444a30982e06b9fae60e267a690b207f", "x-ms-return-client-request-id": "true" @@ -18,8 +19,8 @@ "Cache-Control": "no-cache", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Mon, 09 Mar 2020 03:33:06 GMT", - "elapsed-time": "3", + "Date": "Sat, 25 Apr 2020 01:18:07 GMT", + "elapsed-time": "35", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -32,7 +33,7 @@ ], "Variables": { "RandomSeed": "551039053", - "SearchIndexName": "laieordg", - "SearchServiceName": "azs-net-aquphcqr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndex.json index af957f9fca39..a19650bbe9f4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndex.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-puoxctyi.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-cjsybjxe.search.windows.net/indexes?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-f4b0e81e72e9dd488ae9b2a4786dfdfb-cc3ecc8c78e16b46-00", + "traceparent": "00-0ba6087d351b45409f9091d816003989-f7d995af1b7f5440-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200420.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "26f7066d315f5ab3f827c83cbd605a50", @@ -308,11 +309,11 @@ "Cache-Control": "no-cache", "Content-Length": "6158", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 20 Apr 2020 23:17:08 GMT", - "elapsed-time": "762", - "ETag": "W/\u00220x8D7E580F29EAE6B\u0022", + "Date": "Sat, 25 Apr 2020 01:16:40 GMT", + "elapsed-time": "1305", + "ETag": "W/\u00220x8D7E8B64F61A0AE\u0022", "Expires": "-1", - "Location": "https://azs-net-puoxctyi.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-cjsybjxe.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -320,8 +321,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-puoxctyi.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7E580F29EAE6B\u0022", + "@odata.context": "https://azs-net-cjsybjxe.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B64F61A0AE\u0022", "name": "ptbgbued", "defaultScoringProfile": null, "fields": [ @@ -716,17 +717,18 @@ } }, { - "RequestUri": "https://azs-net-puoxctyi.search.windows.net/indexes(\u0027ptbgbued\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-cjsybjxe.search.windows.net/indexes(\u0027ptbgbued\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4873", "Content-Type": "application/json", - "If-Match": "\u00220x8D7E580F29EAE6B\u0022", + "If-Match": "\u00220x8D7E8B64F61A0AE\u0022", "Prefer": "return=representation", - "traceparent": "00-c73390b778e66f4f80e9851c4cee4168-7c40cdf49445b24c-00", + "traceparent": "00-c4c959c7479a274eb29dece2c735be46-6f4a906ad1ab2b44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200420.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5c92b4cdda72b9dbb6ec10cb1f481d99", @@ -1068,16 +1070,16 @@ "name": "asciiTags" } ], - "@odata.etag": "\u00220x8D7E580F29EAE6B\u0022" + "@odata.etag": "\u00220x8D7E8B64F61A0AE\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6577", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 20 Apr 2020 23:17:09 GMT", - "elapsed-time": "759", - "ETag": "W/\u00220x8D7E580F324E684\u0022", + "Date": "Sat, 25 Apr 2020 01:16:43 GMT", + "elapsed-time": "2466", + "ETag": "W/\u00220x8D7E8B650E31FAC\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1086,8 +1088,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-puoxctyi.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7E580F324E684\u0022", + "@odata.context": "https://azs-net-cjsybjxe.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B650E31FAC\u0022", "name": "ptbgbued", "defaultScoringProfile": null, "fields": [ @@ -1510,7 +1512,12 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1669853055", - "SearchServiceName": "azs-net-puoxctyi" + "RESOURCE_GROUP": "heaths-search", + "SearchServiceName": "azs-net-cjsybjxe", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndexAsync.json index be9ba916356e..577680b73538 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchServiceClientTests/UpdateIndexAsync.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-hmiexjey.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-nybdpxve.search.windows.net/indexes?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-cf52f14a5d7b9e4b9799f4bf9cd8608b-9315f068ef817f4a-00", + "traceparent": "00-22d1d88d464eac439ef5778d8371f16c-b04160844da09d40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200420.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "62e943843b5a3dfda55d7936ea8d46fa", @@ -308,11 +309,11 @@ "Cache-Control": "no-cache", "Content-Length": "6158", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 20 Apr 2020 23:17:14 GMT", - "elapsed-time": "798", - "ETag": "W/\u00220x8D7E580F662088D\u0022", + "Date": "Sat, 25 Apr 2020 01:18:11 GMT", + "elapsed-time": "1475", + "ETag": "W/\u00220x8D7E8B685DEA9F4\u0022", "Expires": "-1", - "Location": "https://azs-net-hmiexjey.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-nybdpxve.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2019-05-06-Preview", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -320,8 +321,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmiexjey.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7E580F662088D\u0022", + "@odata.context": "https://azs-net-nybdpxve.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B685DEA9F4\u0022", "name": "mvqfigik", "defaultScoringProfile": null, "fields": [ @@ -716,17 +717,18 @@ } }, { - "RequestUri": "https://azs-net-hmiexjey.search.windows.net/indexes(\u0027mvqfigik\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-nybdpxve.search.windows.net/indexes(\u0027mvqfigik\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4873", "Content-Type": "application/json", - "If-Match": "\u00220x8D7E580F662088D\u0022", + "If-Match": "\u00220x8D7E8B685DEA9F4\u0022", "Prefer": "return=representation", - "traceparent": "00-72fbe5394eb0a14e963d73bd30d7730e-835848551a4ecf4a-00", + "traceparent": "00-7e3a5f2ba3131142ab5eb76e8bfe91ac-19a476f2892d434f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200420.1", + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b20370b178072cf624850527937d7829", @@ -1068,16 +1070,16 @@ "name": "asciiTags" } ], - "@odata.etag": "\u00220x8D7E580F662088D\u0022" + "@odata.etag": "\u00220x8D7E8B685DEA9F4\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "6577", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 20 Apr 2020 23:17:15 GMT", - "elapsed-time": "730", - "ETag": "W/\u00220x8D7E580F6DB1EC5\u0022", + "Date": "Sat, 25 Apr 2020 01:18:14 GMT", + "elapsed-time": "2315", + "ETag": "W/\u00220x8D7E8B687496726\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1086,8 +1088,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmiexjey.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7E580F6DB1EC5\u0022", + "@odata.context": "https://azs-net-nybdpxve.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D7E8B687496726\u0022", "name": "mvqfigik", "defaultScoringProfile": null, "fields": [ @@ -1510,7 +1512,12 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1673829715", - "SearchServiceName": "azs-net-hmiexjey" + "RESOURCE_GROUP": "heaths-search", + "SearchServiceName": "azs-net-nybdpxve", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json index fc0377f7fd9b..30b700c74d89 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-facbd82db0f4e844ab9f66a04b333bb1-72585024fe1bdd41-00", + "traceparent": "00-097c33daadf6014eba2a1b2955cc5288-068e71b4d8e46547-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bfb788a4eaf0a5b00eee64847b2cf472", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:23:26 GMT", - "elapsed-time": "185", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:18:43 GMT", + "elapsed-time": "190", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-7ad1e98e6e333f488f8d992f9a0532b3-f8e32ad7a1774b4b-00", + "traceparent": "00-2565d8367d903940ab596c8d5c5d64c9-0c794ddc8abb1440-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8a50fa21d4e96bea3c39e70c4d36020f", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:23:28 GMT", - "elapsed-time": "223", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:18:45 GMT", + "elapsed-time": "172", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-b0a7742fed70bd429acd645a7b516606-0326e6e66d874843-00", + "traceparent": "00-f268083402737040b96783331efdd4c1-933c66be73e6994d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0b170f8196009a5563028291b32b0dc5", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:23:30 GMT", - "elapsed-time": "100", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:18:47 GMT", + "elapsed-time": "90", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,20 +24038,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-f936990f4fa2a1488d90048a596ecf77-6f2a57c995731146-00", + "traceparent": "00-336c9f414ea2f34795fef7759fdf2bff-cbdb7d42c97c5746-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3aaab373eeb0cf879e4c82b602a358d7", "x-ms-return-client-request-id": "true" @@ -24068,10 +24069,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:23:32 GMT", - "elapsed-time": "84", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:18:47 GMT", + "elapsed-time": "86", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24080,7 +24081,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28092,20 +28092,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-xgiwrhul.search.windows.net/indexes(\u0027rdjwngir\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-d524767927ee884f8008919b3195783f-ec6559440c3d3148-00", + "traceparent": "00-56921e2871294e4ea16471c3f9045091-c669d1de9eb59445-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6b0354ebe8158a72a5b526e75259b811", "x-ms-return-client-request-id": "true" @@ -28122,10 +28123,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:23:32 GMT", - "elapsed-time": "22", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:18:47 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28134,7 +28135,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-myhteegs.search.windows.net/indexes(\u0027btbmtamh\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28145,8 +28145,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "465025482", - "SearchIndexName": "btbmtamh", - "SearchServiceName": "azs-net-myhteegs" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "rdjwngir", + "SearchServiceName": "azs-net-xgiwrhul", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json index da307c363cba..aeedd73b8863 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-b5c85ab66df8704f8d54095936ed18c5-f8762baa97055f42-00", + "traceparent": "00-4c95df037c18dc4092e1c0207215eafa-3459ecebf6aa0042-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "125fbebe1274e1744f1543c8bb2c0e4e", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:20 GMT", - "elapsed-time": "340", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:01 GMT", + "elapsed-time": "275", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-81381c9b577aa747ab30ef68f9a90391-7af17960c870794c-00", + "traceparent": "00-8f05364c1fa9a644bea6be09e886a082-f3b4aba58ad6c144-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "00b2cc9d3252ea63c8008c0d674967cd", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:22 GMT", - "elapsed-time": "234", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:04 GMT", + "elapsed-time": "164", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-413d8f64048d2e4c859da172ce6a6a6b-2754468cae5aad49-00", + "traceparent": "00-1c8a5e1635b8aa42b83609b8d6221515-3140af17ef74584b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f5c95fa9994e80fe18fedc7e2318de34", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:25 GMT", - "elapsed-time": "123", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:05 GMT", + "elapsed-time": "143", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,20 +24038,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-9b8cf1341b76cd4694ea3052d48437dd-049b16aa49ce864b-00", + "traceparent": "00-8be572cccb1d1041b8de12b96c3b44de-db58549137842e49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f11388be82178b065a744a7385677a06", "x-ms-return-client-request-id": "true" @@ -24068,10 +24069,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:25 GMT", - "elapsed-time": "78", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:06 GMT", + "elapsed-time": "68", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24080,7 +24081,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28092,20 +28092,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-btsiphsk.search.windows.net/indexes(\u0027mnwwnnkm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-5ce0d6272d2f604d98e0d84469ec56e1-91d9a7d2630a5c44-00", + "traceparent": "00-096cb66d69e38a4fb0d9ef654abf4519-095f2fef288f6841-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5c1f75ad18630400cd31e85456e5c6af", "x-ms-return-client-request-id": "true" @@ -28122,9 +28123,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:25 GMT", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:06 GMT", "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", @@ -28134,7 +28135,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ekreicby.search.windows.net/indexes(\u0027evmvkksy\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28145,8 +28145,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1771240683", - "SearchIndexName": "evmvkksy", - "SearchServiceName": "azs-net-ekreicby" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "mnwwnnkm", + "SearchServiceName": "azs-net-btsiphsk", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json index cb20a978c04b..80a51f1d828d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-a4515f8d48c1824b95bf102b7625a4f1-114539f7612a4f4b-00", + "traceparent": "00-fe0b55326a4a4e47a8dc3e8f9ab9ea24-548a567002df9e4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2c6015e835f521ca6c2720b8ac87037f", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:24:08 GMT", - "elapsed-time": "362", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:16 GMT", + "elapsed-time": "285", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-a4f381dd8d0a17468b1743d8b007e140-444046c6ebd90c47-00", + "traceparent": "00-7a4579d13cdb654e8443a7f21c5e18de-b890d507e5281649-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0f9e38f61f822ff50bfdfa7414cd09d1", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:24:10 GMT", - "elapsed-time": "206", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:19 GMT", + "elapsed-time": "160", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-c1726844ad0bca4685909e49e4ddc488-e47be0a7f4b8a543-00", + "traceparent": "00-c2da8fc8504f4d4fb688937d379ef20b-6538f627d52bc54f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a7f7b83ea963a54557c7332aa10fae73", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:24:12 GMT", - "elapsed-time": "101", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:20 GMT", + "elapsed-time": "117", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,20 +24038,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-016c1c9e8b60164f9b2956146d7bb269-27d37b404541b54b-00", + "traceparent": "00-9d3029a00ed45b489697291261ffb5ae-2faad8fd1228384a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e6405735a9b3c84e1f3120f73a560d9e", "x-ms-return-client-request-id": "true" @@ -24068,10 +24069,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:24:12 GMT", - "elapsed-time": "80", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:20 GMT", + "elapsed-time": "70", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24080,7 +24081,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28092,20 +28092,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vxgppquq.search.windows.net/indexes(\u0027jblhxryv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-b76a54ecb8db284fb5bfe196d36dd231-872036bc43c72840-00", + "traceparent": "00-7b021c4ffa9f854c9fdc3a2d70458e90-d3e289269d306547-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f4794e1e5b904d1cf2f9b7baebcb8dfb", "x-ms-return-client-request-id": "true" @@ -28122,9 +28123,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:24:12 GMT", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:21 GMT", "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", @@ -28134,7 +28135,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvyykmul.search.windows.net/indexes(\u0027ghsvacac\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28145,8 +28145,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1252796088", - "SearchIndexName": "ghsvacac", - "SearchServiceName": "azs-net-wvyykmul" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "jblhxryv", + "SearchServiceName": "azs-net-vxgppquq", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json index 7b79ef3e04e3..3f4506a0d66d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-2eba7cf0580e4545a5cb94c950e77081-79edc4163306f94b-00", + "traceparent": "00-20394bdd43275947906e1ed20360e417-fa4dc0ebf64f1c41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "634278f9039a44b2a6b4e6cc28369b7a", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:25:59 GMT", - "elapsed-time": "1139", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:35 GMT", + "elapsed-time": "240", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-232896ccfc781540bb0246b35f9e8d64-479a635b0a3ee846-00", + "traceparent": "00-4a7dad4ed088774d9639ff69b93dd119-2b4fecf744042844-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "fe20c7913bf06794253635ee907b395b", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:26:02 GMT", - "elapsed-time": "172", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:38 GMT", + "elapsed-time": "178", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-a6b92f12070d7d40885f6de6d4908349-45075400972b674b-00", + "traceparent": "00-7c3fb195dd79ec459c033df665928b43-ee5f85a748328a47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a7147c3455297fd1e8dcd5fce400f6ab", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:26:04 GMT", - "elapsed-time": "86", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:40 GMT", + "elapsed-time": "109", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,20 +24038,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-28d882993d6054448a92121046d9a889-b7f9b9267404df40-00", + "traceparent": "00-a97e6e11e998db4aaf931de215fb63e6-84dddcdb88aa8d4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d440dd58923abdb1e4da3d64cec4b32b", "x-ms-return-client-request-id": "true" @@ -24068,10 +24069,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:26:04 GMT", - "elapsed-time": "76", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:40 GMT", + "elapsed-time": "65", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24080,7 +24081,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28092,20 +28092,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-vpequvov.search.windows.net/indexes(\u0027jbpdlobh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-fb6dc544e98df9468c682a025e197c8d-388a63bfcdc33148-00", + "traceparent": "00-5ebfd3eb6240e341bedbe221861dba88-d3ed93f52a18f741-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ac988a7bf4213c50f5a0151366988224", "x-ms-return-client-request-id": "true" @@ -28122,10 +28123,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:26:04 GMT", - "elapsed-time": "11", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:22:40 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28134,7 +28135,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-txgraevh.search.windows.net/indexes(\u0027maehvegf\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28145,8 +28145,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1158078461", - "SearchIndexName": "maehvegf", - "SearchServiceName": "azs-net-txgraevh" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "jbpdlobh", + "SearchServiceName": "azs-net-vpequvov", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json index 45218efc2bd2..4f640e83ee8c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-5a765ff80ec0cc4aa8dadcdb6ebceeea-c0108b3186df914a-00", + "traceparent": "00-02424006dbca17459eef5c81930364e6-e486b341ace4aa46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "143128a3b6549d0c319609d835272ac6", "x-ms-return-client-request-id": "true" @@ -650,10 +651,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10287", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:22 GMT", - "elapsed-time": "128", + "Content-Length": "10127", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:49 GMT", + "elapsed-time": "67", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -662,7 +663,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -1610,16 +1610,17 @@ } }, { - "RequestUri": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-212a969207267f488dc427b03e0cae49-e760b9556638d34f-00", + "traceparent": "00-c591290308369145a3e7e462cba69f93-faa6b119c4199049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "24ec8e84827e109ee80f0e92f47943f4", "x-ms-return-client-request-id": "true" @@ -1634,10 +1635,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2276", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:25 GMT", - "elapsed-time": "31", + "Content-Length": "2175", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:52 GMT", + "elapsed-time": "19", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1646,7 +1647,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -1857,20 +1857,21 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-6f9cc9d3ac036c40af13d016ea9da903-a2642b0c76ed4c44-00", + "traceparent": "00-ca1d1008bd647a4d9c8486a8540f9e31-066475414567144a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b76faf0a21e8d900b906e6b5158e2c00", "x-ms-return-client-request-id": "true" @@ -1886,10 +1887,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2256", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:25 GMT", - "elapsed-time": "22", + "Content-Length": "2155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:52 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1898,7 +1899,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2109,20 +2109,21 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-c0c3c41d2e140c46a956a0d833fe5bfd-35d00cf76a943643-00", + "traceparent": "00-5470f486aefec44cab11ec206f184604-1fcecaea66801c4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "543b81e2e8f6213089202b44a879a9b8", "x-ms-return-client-request-id": "true" @@ -2138,10 +2139,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2229", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:25 GMT", - "elapsed-time": "7", + "Content-Length": "2128", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:52 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2150,7 +2151,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2361,20 +2361,21 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-bgrdwedl.search.windows.net/indexes(\u0027wotwvloh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-3e68781cc47b8e43b79de4727d6ed0cd-78cc537222c64d40-00", + "traceparent": "00-79b1deb2b670c04896fc4da46147eaad-543c2da63aea7244-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "86ce145273b763de8d136a789be9fb59", "x-ms-return-client-request-id": "true" @@ -2390,10 +2391,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "740", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:25 GMT", - "elapsed-time": "6", + "Content-Length": "639", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:52 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2402,7 +2403,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-lwuxwmok.search.windows.net/indexes(\u0027yeykygkk\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -2477,8 +2477,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "2136761083", - "SearchIndexName": "yeykygkk", - "SearchServiceName": "azs-net-lwuxwmok" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "wotwvloh", + "SearchServiceName": "azs-net-bgrdwedl", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json index 83604076b593..fc3df7b1cf1a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-2f0b7d79c3718a4a9ef2505ba622e97a-095fcc4974b51246-00", + "traceparent": "00-59bab9c327f6bf4f9333b443230b599f-96a38be0c676d44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "26c7e4d37d542c947b8c82566387c512", "x-ms-return-client-request-id": "true" @@ -650,10 +651,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10287", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:55 GMT", - "elapsed-time": "105", + "Content-Length": "10127", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:08 GMT", + "elapsed-time": "165", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -662,7 +663,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -1610,16 +1610,17 @@ } }, { - "RequestUri": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-8965c79fc31e4240b4eea466f3c90501-6e881b0f6b675e43-00", + "traceparent": "00-058e9f34396acf4ca4cf564797511d1e-5cf285f991f81d49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3c92c6b9a55af734786142bac7cf03c3", "x-ms-return-client-request-id": "true" @@ -1634,9 +1635,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2276", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:58 GMT", + "Content-Length": "2175", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:10 GMT", "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", @@ -1646,7 +1647,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -1857,20 +1857,21 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-e6bd3c1dcafa824a9fbbcf86976fd082-3aab32b01cbc694f-00", + "traceparent": "00-0b9760c7ca737f40b5c997cc655968ee-56159f69bd097243-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e6d350064d6a475bafcf271925a51bf3", "x-ms-return-client-request-id": "true" @@ -1886,10 +1887,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2256", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:58 GMT", - "elapsed-time": "7", + "Content-Length": "2155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:10 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1898,7 +1899,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2109,20 +2109,21 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-468096887498554ca4e4316e23506b93-ac70387b1a9a754a-00", + "traceparent": "00-a0c1a2eb3681794a92cd57980e575cab-68be5d0a9c618c41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9b69ed6da2022eb4afcfadf33bd965ab", "x-ms-return-client-request-id": "true" @@ -2138,10 +2139,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2229", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:58 GMT", - "elapsed-time": "9", + "Content-Length": "2128", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:11 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2150,7 +2151,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2361,20 +2361,21 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-diybelhe.search.windows.net/indexes(\u0027lgcwkggd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-70bb7d9c0a0d9d4dba4c89d6dd41320f-a3b44a18fe856044-00", + "traceparent": "00-ac2177888a01b1429f65cb5456dc8b8b-7a3e51ed8aa71c43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200402.1", - "(.NET Core 4.6.28516.03; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "124fbf88dfb46ca76a4b8d8b7d1bd1d2", "x-ms-return-client-request-id": "true" @@ -2390,10 +2391,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "740", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 03 Apr 2020 03:46:58 GMT", - "elapsed-time": "6", + "Content-Length": "639", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:11 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2402,7 +2403,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-djimesba.search.windows.net/indexes(\u0027xtytovon\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -2477,8 +2477,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "555900954", - "SearchIndexName": "xtytovon", - "SearchServiceName": "azs-net-djimesba" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "lgcwkggd", + "SearchServiceName": "azs-net-diybelhe", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json index 16d543139bcc..b670f44fd2df 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-c78025ed57e412428ec890ec3b88a0dd-05b4ca9adddae845-00", + "traceparent": "00-529ecf629ffa2042a1ebd7109ee11fba-c25a9fc56d32aa46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a03f9a25bc31a01a36c04ceb302bbee3", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6034", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:35:36 GMT", - "elapsed-time": "88", + "Content-Length": "5194", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "102", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.30154645, @@ -52,19 +52,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -84,19 +72,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -146,19 +122,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -177,19 +141,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -208,19 +160,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -241,19 +181,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -273,19 +201,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -327,7 +243,7 @@ ], "Variables": { "RandomSeed": "100396070", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json index 2cafce47adfb..a865ff8617c9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-8ebc09d18f9ba744ab386109afefb3ff-6b874afb5b5ec644-00", + "traceparent": "00-0b9ce11dea05c140b80f4138eacfac03-6423cef964f6ee42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d166a7fadfc6bdab8c593ef48d813a9b", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6034", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "8", + "Content-Length": "5194", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", + "elapsed-time": "76", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.30154645, @@ -52,19 +52,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -84,19 +72,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -146,19 +122,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -177,19 +141,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -208,19 +160,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -241,19 +181,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -273,19 +201,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -327,7 +243,7 @@ ], "Variables": { "RandomSeed": "1142184435", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json index 08e4c4b7eaf9..f7f5f9052b03 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-95b8b63a064e0949bf122a54d473a995-612c057b3f27dc49-00", + "traceparent": "00-ef75b871f1841e4cb0354aee4ffc095b-1bfcb5854d8c3341-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "07a3c50b3edb39a6194807ff352b8e6c", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1506", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:35:36 GMT", - "elapsed-time": "16", + "Content-Length": "1193", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "13", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -54,19 +54,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -85,19 +73,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -107,7 +83,7 @@ ], "Variables": { "RandomSeed": "1956187125", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json index d02511d1c31a..dcf8d805b268 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-056bd5b5b8d1e54f8c8d43433a9f7591-e1d918ab5470fa45-00", + "traceparent": "00-bf571d63edc3af4d93e9a77a36dac7a0-4120e05627b50a4b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "dd16b3eba0826aec7c0eb5a7d63f766c", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1506", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "8", + "Content-Length": "1193", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -54,19 +54,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -85,19 +73,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -107,7 +83,7 @@ ], "Variables": { "RandomSeed": "94111913", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json index 39e0e4360ae0..cf05aaa78f49 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-knxpatht.search.windows.net/indexes(\u0027etamstct\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "188", "Content-Type": "application/json", - "traceparent": "00-c731aa157c006a438f916eb21a8c2e01-d6259f9552b78341-00", + "traceparent": "00-097aac930cd0474db1e9d144502bfe7e-50667916495b714c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "158d50b0f88f6f2d22874a374cb4873b", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 19:45:49 GMT", - "elapsed-time": "81", + "Content-Length": "1050", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "15", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-knxpatht.search.windows.net/indexes(\u0027etamstct\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.6247139, @@ -67,19 +67,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -89,7 +77,7 @@ ], "Variables": { "RandomSeed": "2066752673", - "SearchIndexName": "etamstct", - "SearchServiceName": "azs-net-knxpatht" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json index 2acbac32b1e6..2b8fcf21f955 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-knxpatht.search.windows.net/indexes(\u0027etamstct\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "188", "Content-Type": "application/json", - "traceparent": "00-9af91eece5ecca4c92724019b596b22a-2cb583d39f8fd843-00", + "traceparent": "00-53dbd4817a201a4fb1d016193dca0dcb-139f9d18ea79d047-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "72baba7db5f6ee4f1f027196fc81deab", "x-ms-return-client-request-id": "true" @@ -27,10 +28,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 19:45:49 GMT", - "elapsed-time": "9", + "Content-Length": "1050", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -39,7 +40,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-knxpatht.search.windows.net/indexes(\u0027etamstct\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.6247139, @@ -67,19 +67,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -89,7 +77,7 @@ ], "Variables": { "RandomSeed": "1321798646", - "SearchIndexName": "etamstct", - "SearchServiceName": "azs-net-knxpatht" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json index ab1d5546efa5..d6a8e273f0da 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "110", "Content-Type": "application/json", - "traceparent": "00-696caa6bb0427a44a182d4a42eefe218-686b9daeea86e940-00", + "traceparent": "00-72a178e2c98df847a8b082b5e1053b4c-4a5650de0cf44b4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2d0225a107f197e3c7d80141a0cbc932", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:35:36 GMT", - "elapsed-time": "25", + "Content-Length": "76", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.8411939, @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "1305604714", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json index e770bde55070..fd830bb190b0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "110", "Content-Type": "application/json", - "traceparent": "00-6673f6d37f6ac34dbce8b13825c7f906-a296c29375cd7449-00", + "traceparent": "00-b3e794b4c0e6d640afa0b3c92fa2bef2-2cce3aefbd765843-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "547bdca856ac6b95fbe8f0f9687543ee", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "177", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "8", + "Content-Length": "76", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.8411939, @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "1340537138", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json index ec069bf0cd05..2190d30ec457 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-95d08d4ec061964fad26edaa1691e00c-35a91677b081bd44-00", + "traceparent": "00-ce8ef6c08043b24a9d9d5a6bb92632ac-2c0f5352d46ec449-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e3ce0ea2689207604ed9301360389e2d", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7202", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:35:37 GMT", - "elapsed-time": "9", + "Content-Length": "6362", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.coverage": 100.0, "value": [ { @@ -56,19 +56,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -87,19 +75,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -118,19 +94,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -149,19 +113,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -180,19 +132,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -260,19 +200,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -324,19 +252,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -377,7 +293,7 @@ ], "Variables": { "RandomSeed": "1407765009", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json index 82ade7bde885..76d1f852602d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-0d91e901b175db4084f14c989675b156-4873418394499946-00", + "traceparent": "00-b801cde582b9fd4db22bc8e72ae604b3-ef7f8293eba68b42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2f588dc52dbacd39693487e8d6cba384", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7202", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", + "Content-Length": "6362", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.coverage": 100.0, "value": [ { @@ -56,19 +56,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -87,19 +75,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -118,19 +94,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -149,19 +113,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -180,19 +132,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -260,19 +200,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -324,19 +252,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -377,7 +293,7 @@ ], "Variables": { "RandomSeed": "640477458", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json index 3f7c647b5ea9..78dd02430cf4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-b5137654015a5146ab6bef54781f3787-136d93684e1d8b47-00", + "traceparent": "00-e452001d944d2b49a59b30652e3d4f40-29eb85861ed24f4e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "51839d6300b974b44332f5bf90cf6254", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2036", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:35:37 GMT", - "elapsed-time": "8", + "Content-Length": "1725", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:19:53 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.22271262, @@ -53,19 +53,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -85,19 +73,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -138,7 +114,7 @@ ], "Variables": { "RandomSeed": "1970769932", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json index ecd10cd528d8..ed5ab131ceb7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-ea815096830e7548a4096f7402e84655-6d1a7df2c7903746-00", + "traceparent": "00-6bcd95038373ab48830177e48a854159-d5f3b7c779233445-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "08e33c279b0342752b62202427bad24e", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2036", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "8", + "Content-Length": "1725", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:13 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.22271262, @@ -53,19 +53,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -85,19 +73,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -138,7 +114,7 @@ ], "Variables": { "RandomSeed": "317676426", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json index c4e8347f41a6..38bda98b0c23 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-c89f0387c8f18a41a4b47cb10ae00b31-b85f0eab86c35246-00", + "traceparent": "00-0ca1ec15ddb5a941beb62cb83b6c3eea-c22db3224a956d4f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f902170b5f6982db30c334500832f83e", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:10 GMT", - "elapsed-time": "468", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:21 GMT", + "elapsed-time": "326", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-58800a01b2173140a76e120d31234ddf-be218daeb4dbe941-00", + "traceparent": "00-bb6cb9faae758b4f8e31da99a4cc77be-0178793e6e377f42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "90bae7f3decf0a33e3adc707e20db7b1", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:12 GMT", - "elapsed-time": "384", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:23 GMT", + "elapsed-time": "162", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-49b406c4f1585040865e4e0918f2bc24-d90ac4f5395c1743-00", + "traceparent": "00-32ef24893d9e154181c7a66bde0c4057-c3e4634e4211c945-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1de60394e06a048713226216d5b1bb2e", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:15 GMT", - "elapsed-time": "95", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:26 GMT", + "elapsed-time": "80", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,19 +24038,20 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b2a29505a1092c1ee3f715bc97d3a022", "x-ms-return-client-request-id": "true" @@ -24067,10 +24068,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:15 GMT", - "elapsed-time": "68", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:26 GMT", + "elapsed-time": "75", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24079,7 +24080,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28091,19 +28091,20 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pigqrgoh.search.windows.net/indexes(\u0027kqmqumma\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "05bb820cdb4b13d35fb57dac7c1c3432", "x-ms-return-client-request-id": "true" @@ -28120,9 +28121,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:15 GMT", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:26 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -28132,7 +28133,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-drllmaby.search.windows.net/indexes(\u0027htdhmdyj\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28143,8 +28143,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "965034096", - "SearchIndexName": "htdhmdyj", - "SearchServiceName": "azs-net-drllmaby" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "kqmqumma", + "SearchServiceName": "azs-net-pigqrgoh", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json index 7577f2b70d35..14c7f49cd8c9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-b806a0dac78d7144a8f1f46f6f858c07-aa9093d0749e1040-00", + "traceparent": "00-8f1b7c5d98f2144ca8001f385d4ae59a-0db1c90eb4cf5846-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6c1cd894bc0b232c5f30bdb16e8dd153", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:17 GMT", - "elapsed-time": "419", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:40 GMT", + "elapsed-time": "160", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-0680174fb92e514585a93742664e11a0-390181eb8f2b7545-00", + "traceparent": "00-c064c06fde53a44e908149bc2b06b4ff-f9240852004b4748-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c3c78e0a3ca3a7e71527be41ab56635b", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:19 GMT", - "elapsed-time": "156", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:43 GMT", + "elapsed-time": "172", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-21cb09c389e8574f886cb8f5199a340f-0e1af2505876bc48-00", + "traceparent": "00-ad9411239fa45d4babe293dd12656c86-866dde0b4738de41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d5efcdae8bd77c4def6c5da7f8b4a2c6", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:21 GMT", - "elapsed-time": "78", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:45 GMT", + "elapsed-time": "96", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,19 +24038,20 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f0b6a605c1925761f17557e4feea7808", "x-ms-return-client-request-id": "true" @@ -24067,10 +24068,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:21 GMT", - "elapsed-time": "69", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:45 GMT", + "elapsed-time": "75", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24079,7 +24080,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28091,19 +28091,20 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yfkbhynf.search.windows.net/indexes(\u0027fwynqoxx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a00362ccfb9e7e7b414ad437de40ae61", "x-ms-return-client-request-id": "true" @@ -28120,10 +28121,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:21 GMT", - "elapsed-time": "11", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:23:45 GMT", + "elapsed-time": "17", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28132,7 +28133,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-eiajsqsa.search.windows.net/indexes(\u0027nvmhuibj\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28143,8 +28143,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1530289457", - "SearchIndexName": "nvmhuibj", - "SearchServiceName": "azs-net-eiajsqsa" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "fwynqoxx", + "SearchServiceName": "azs-net-yfkbhynf", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json index ffc88d510e5f..c9a875e49175 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-57ad1e931b05214badcc9ec6448dbff6-497d43278cb1cf41-00", + "traceparent": "00-a13d1936df5f36419ebda566f1b164db-2003b68d2ad3b848-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f5e4b2e9b3b2bbc04351915ecd7581a4", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:45 GMT", - "elapsed-time": "187", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:55 GMT", + "elapsed-time": "333", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-d4fd94c00442f045b0caff25d0b5e30f-85ed0097028cd744-00", + "traceparent": "00-b5f1e4732ee75843bf0f444505bbeca1-869e70a3b1590a47-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c4a74eff0e26b572696c7711e0e91b72", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:48 GMT", - "elapsed-time": "382", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:20:58 GMT", + "elapsed-time": "178", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-2f9a210d1a154d4da8adea72d2026aac-5039c39c8a74c24a-00", + "traceparent": "00-d476ef04c8a9194586482675dc590b1b-b46ea00a3232be48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ba6291c562f3eead2d9d4e9ff1b5ac53", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:50 GMT", - "elapsed-time": "80", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:00 GMT", + "elapsed-time": "100", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,19 +24038,20 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "9c5b10458de4daaf402f8b453bafdb59", "x-ms-return-client-request-id": "true" @@ -24067,10 +24068,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:50 GMT", - "elapsed-time": "63", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:00 GMT", + "elapsed-time": "76", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24079,7 +24080,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28091,19 +28091,20 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-dnvhneur.search.windows.net/indexes(\u0027ttrbvxuw\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3c981e36c7129db1a1b89788c0d2c3b4", "x-ms-return-client-request-id": "true" @@ -28120,9 +28121,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:36:50 GMT", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:00 GMT", "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", @@ -28132,7 +28133,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-hmdlgddo.search.windows.net/indexes(\u0027xefrxwen\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28143,8 +28143,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "803774682", - "SearchIndexName": "xefrxwen", - "SearchServiceName": "azs-net-hmdlgddo" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "ttrbvxuw", + "SearchServiceName": "azs-net-dnvhneur", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json index 0e43de4e3a17..69a13baf4a8f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-0c0990897380a94298495ef6d5df4d70-dcb52edb7e215343-00", + "traceparent": "00-0615d10d2cbc3d49a2d45be8cb200e44-66f659337b61484c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "25badf7625e4e590537891d8131df88b", "x-ms-return-client-request-id": "true" @@ -4022,10 +4023,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65093", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:50 GMT", - "elapsed-time": "233", + "Content-Length": "64933", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:14 GMT", + "elapsed-time": "321", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -4034,7 +4035,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -10040,16 +10040,17 @@ } }, { - "RequestUri": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-cdc198345668d64094a9169abb9c23cc-9ff5ec08bd3b1140-00", + "traceparent": "00-9db230c446506844b775bd7bd0763430-4ee0c8574b227441-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e3431df9a98ef535e5499a4b88e8c054", "x-ms-return-client-request-id": "true" @@ -14025,10 +14026,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "65577", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:38:57 GMT", - "elapsed-time": "152", + "Content-Length": "65417", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:16 GMT", + "elapsed-time": "175", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -14037,7 +14038,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "1011", @@ -19989,16 +19989,17 @@ } }, { - "RequestUri": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-ab35c84e77f80c4089b343a53a874b3b-ca36688ae4e3d34c-00", + "traceparent": "00-558aa03dd5eb7b48a7ea222e4d4dbab0-11313892ba57f546-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b0ddc258791d80ee430bdf5d381ffc96", "x-ms-return-client-request-id": "true" @@ -20014,10 +20015,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39285", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:00 GMT", - "elapsed-time": "74", + "Content-Length": "39184", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:19 GMT", + "elapsed-time": "84", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -20026,7 +20027,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -24038,19 +24038,20 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "06d2ee22638fccbea9c43f9a8b445c6a", "x-ms-return-client-request-id": "true" @@ -24067,10 +24068,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:00 GMT", - "elapsed-time": "91", + "Content-Length": "38300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:19 GMT", + "elapsed-time": "74", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -24079,7 +24080,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -28091,19 +28091,20 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-moteoihj.search.windows.net/indexes(\u0027hafnsqkd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "517f3cb848407f6d2fc39f83cad7bcc6", "x-ms-return-client-request-id": "true" @@ -28120,10 +28121,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "150", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:00 GMT", - "elapsed-time": "7", + "Content-Length": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:19 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -28132,7 +28133,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-ppphnukf.search.windows.net/indexes(\u0027gdagkfqp\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -28143,8 +28143,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "1931089632", - "SearchIndexName": "gdagkfqp", - "SearchServiceName": "azs-net-ppphnukf" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "hafnsqkd", + "SearchServiceName": "azs-net-moteoihj", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json index ac93009d3c9b..96f9194ffcab 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-60bf23fcbeaa3e4d9575a140e62c3b77-45895af48f096d41-00", + "traceparent": "00-193650b30ffa764984bc62479975da77-1559e0a2938d704e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5c63aeb286354da593d3ba4250db02c6", "x-ms-return-client-request-id": "true" @@ -650,10 +651,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10287", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:42 GMT", - "elapsed-time": "215", + "Content-Length": "10127", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:29 GMT", + "elapsed-time": "64", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -662,7 +663,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -1610,16 +1610,17 @@ } }, { - "RequestUri": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-82d993713563ac449c712a09567f340d-897e8f2471123b45-00", + "traceparent": "00-3fa35fa5ee35f741bc40f19ebe857017-6808e4aec0691944-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "008ca289d6b923f0d534bfde2ccf66e0", "x-ms-return-client-request-id": "true" @@ -1634,10 +1635,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2276", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:44 GMT", - "elapsed-time": "31", + "Content-Length": "2175", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:31 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1646,7 +1647,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -1857,19 +1857,20 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bd4430c95eb338f41bfe5cd622be84d6", "x-ms-return-client-request-id": "true" @@ -1885,9 +1886,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2256", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:44 GMT", + "Content-Length": "2155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:31 GMT", "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", @@ -1897,7 +1898,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2108,19 +2108,20 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bf55aa85a643dbf9bd408701c6c620c3", "x-ms-return-client-request-id": "true" @@ -2136,10 +2137,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2229", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:44 GMT", - "elapsed-time": "7", + "Content-Length": "2128", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:31 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2148,7 +2149,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2359,19 +2359,20 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-lerplheu.search.windows.net/indexes(\u0027qksgqmpj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "2079da6d45972b12ae54e4bb7a1a0016", "x-ms-return-client-request-id": "true" @@ -2387,10 +2388,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "740", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:44 GMT", - "elapsed-time": "7", + "Content-Length": "639", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:31 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2399,7 +2400,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-qepeycgy.search.windows.net/indexes(\u0027kyrxxhtc\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -2474,8 +2474,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "862653823", - "SearchIndexName": "kyrxxhtc", - "SearchServiceName": "azs-net-qepeycgy" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "qksgqmpj", + "SearchServiceName": "azs-net-lerplheu", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json index bff4511dbda2..cfa97a785c94 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.index?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-dcc2939021795d4d94128ccb008c65da-ea261ee2d7ed194d-00", + "traceparent": "00-2f42ec641788404f91cf21ed7b7b8b32-6700d6070e783346-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c6da286d68e4a77510f6d12ab928fcf9", "x-ms-return-client-request-id": "true" @@ -650,10 +651,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10287", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:31 GMT", - "elapsed-time": "113", + "Content-Length": "10127", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:48 GMT", + "elapsed-time": "64", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -662,7 +663,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/$metadata#Collection(Microsoft.Azure.Search.V2019_05_06_Preview.IndexResult)", "value": [ { "key": "11", @@ -1610,16 +1610,17 @@ } }, { - "RequestUri": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-9c7464bd6dccbb40ba2701347d920ad3-5e9ffde7af8dcd41-00", + "traceparent": "00-8200d08a538a2d4ba8193e1d01fd23a2-e3c3458914d77840-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "46f58ece534e8fc2dfdc14db394c1d57", "x-ms-return-client-request-id": "true" @@ -1634,10 +1635,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2276", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:33 GMT", - "elapsed-time": "26", + "Content-Length": "2175", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:50 GMT", + "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1646,7 +1647,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -1857,19 +1857,20 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d98f51e20a0d6b70c8d696f1866205b3", "x-ms-return-client-request-id": "true" @@ -1885,10 +1886,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2256", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:34 GMT", - "elapsed-time": "9", + "Content-Length": "2155", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:50 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1897,7 +1898,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2108,19 +2108,20 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8317ee020ee41a3b654ae608549a6ec3", "x-ms-return-client-request-id": "true" @@ -2136,10 +2137,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2229", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:34 GMT", - "elapsed-time": "7", + "Content-Length": "2128", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:50 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2148,7 +2149,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/$metadata#docs(*)", "@search.nextPageParameters": { "facets": [], "orderby": "hotelId asc", @@ -2359,19 +2359,20 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" } }, { - "RequestUri": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-tlegeaad.search.windows.net/indexes(\u0027tsvhmtmv\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "674879d92299c3ec1e897e77bdd1097d", "x-ms-return-client-request-id": "true" @@ -2387,10 +2388,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "740", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:34 GMT", - "elapsed-time": "7", + "Content-Length": "639", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:50 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -2399,7 +2400,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-kcnpvuty.search.windows.net/indexes(\u0027kopcoxec\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -2474,8 +2474,13 @@ } ], "Variables": { + "CLIENT_ID": "f9ab11db-b032-44b3-af0a-44713541cc40", + "LOCATION": "westus2", "RandomSeed": "2041220412", - "SearchIndexName": "kopcoxec", - "SearchServiceName": "azs-net-kcnpvuty" + "RESOURCE_GROUP": "heaths-search", + "SearchIndexName": "tsvhmtmv", + "SearchServiceName": "azs-net-tlegeaad", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57", + "TENANT_ID": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json index 0cea939878ad..17d31859a717 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-1f030ec9bc863847b99d6164379f8105-062a5e5416bf4f48-00", + "traceparent": "00-bfb5de0420bd1c469b114a3dd5917f9c-83edf879ebf9f94a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d4f7f71a4e616f30a50a994591b9bc06", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7446", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", - "elapsed-time": "145", + "Content-Length": "6606", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "142", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.facets": { "lastRenovationDate": [ { @@ -89,19 +89,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -120,19 +108,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -151,19 +127,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -182,19 +146,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -213,19 +165,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -293,19 +233,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -357,19 +285,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -410,7 +326,7 @@ ], "Variables": { "RandomSeed": "1958082955", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json index e37b11101d6c..36387d61f059 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-fcdb45baa512c24faaf6a87740894597-6e8809b99987ab4a-00", + "traceparent": "00-8f7f007cea7fa14fb892f2f610f2d707-10b603511299194d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "b6098f300a3dfc7c11745ebcade6cf5d", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7446", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "128", + "Content-Length": "6606", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "88", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.facets": { "lastRenovationDate": [ { @@ -89,19 +89,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -120,19 +108,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -151,19 +127,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -182,19 +146,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -213,19 +165,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -293,19 +233,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -357,19 +285,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -410,7 +326,7 @@ ], "Variables": { "RandomSeed": "16759243", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json index b0a7b3631830..cb4d937bd73b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-dfca8afd602740448f333a45bae491bb-bce756cd5916bf45-00", + "traceparent": "00-b21c59d8f7270943af43ecf28e68e467-0a2ecc340ade2340-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "7743db6bbc42e61ea005c3fb312641d3", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "171", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", - "elapsed-time": "11", + "Content-Length": "70", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "867751402", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json index 2825069994a0..16c0957869b3 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-0e90b46fe86c4c4c94aca09e32424bed-3b8082552c07684a-00", + "traceparent": "00-25943182eae8904699623342c982db36-b554ba3f778b2149-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "013d1ca4d19ece4956bfa35f180b83c7", "x-ms-return-client-request-id": "true" @@ -25,9 +26,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "171", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", + "Content-Length": "70", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "780300718", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json index 0b1b6ac25a87..ea5aaee9f08b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "144", "Content-Type": "application/json", - "traceparent": "00-15364a6ca8ff8f418c3479eb592371cf-f66b9483ebce254a-00", + "traceparent": "00-7de18bb6bfa1ab468aba58c1e1579f1d-d9d165512e70424e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "41666bf80fb2d16593377ffe9606f6a8", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", - "elapsed-time": "26", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,14 +37,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "822803816", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json index 72baf574ab98..10e37ee0d169 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "144", "Content-Type": "application/json", - "traceparent": "00-f61449541cd727459cd9806573858a23-f35f9a089958b04c-00", + "traceparent": "00-9b0e335d39383a4abac3cd72a83927c9-2870ab2280fa754c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "32ff1956c352f9e2e40ce3c1624ffb9d", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "28", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,14 +37,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "739320000", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json index 93b66c4c17fd..a942229e71e0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-97583c83dacbab4ea0ffb8bc4f10d14c-d7dbe0ea4dc28c47-00", + "traceparent": "00-7441bce98baeec4187c84d047e3e089b-0c6ac31dd88e7448-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "773a68d9fe8c603d317db3ec2c347eef", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "148", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", - "elapsed-time": "49", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "33", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,7 +47,7 @@ ], "Variables": { "RandomSeed": "1082736906", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json index 48662d2a18d2..5006c4f0032b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-ac7725ba9f982c4f9edb74992e17ddbb-80518801d18d2d4e-00", + "traceparent": "00-ffb4b98188a7cf4da44db80cff02077b-a776608142bd0d4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bf8cc4a405e089e0f690d708880c3947", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "148", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "27", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "19", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,7 +47,7 @@ ], "Variables": { "RandomSeed": "1564667618", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json index 6e637c12d116..8d97b32012dc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-7e731fe1dc96654fb836197ce2d0911a-d3c63212188e494e-00", + "traceparent": "00-964b8ea2df56584290ec3a5bf0785ff2-8776fc5ac294ae4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5246c30c2fc5166062073847e24aecb4", "x-ms-return-client-request-id": "true" @@ -25,9 +26,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "603", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", + "Content-Length": "396", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.30154645, @@ -54,19 +54,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -76,7 +64,7 @@ ], "Variables": { "RandomSeed": "2122308432", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json index eb0442d62c79..59c40567ecab 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-9f7ad43f9f69bc4c9e79a2ffe013250b-23ce9c95dc855743-00", + "traceparent": "00-f39d886baf91a64183acf17649f35a05-9acbd03142cd7f4c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "e1351a5bbc8b244d32e5d5fa7d7ac951", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "603", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "7", + "Content-Length": "396", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 0.30154645, @@ -54,19 +54,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -76,7 +64,7 @@ ], "Variables": { "RandomSeed": "1552992714", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json index 39322ed9962f..e030af655d04 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "155", "Content-Type": "application/json", - "traceparent": "00-f46b35b74a7b774ca291629eb2fb9409-9fcd7e2a3775a046-00", + "traceparent": "00-ac1ce9206bfcab47a0742b96f0c58187-6b2f752618b4414f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "976c7c35862a4db0638a786eaa22c282", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", - "elapsed-time": "7", + "Content-Length": "260", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.1593354, @@ -68,7 +68,7 @@ ], "Variables": { "RandomSeed": "28556768", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json index 598b7fb8d5d6..d6d306efcd8b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "155", "Content-Type": "application/json", - "traceparent": "00-b55c2f11471c454c9b8e46b9994c5dc9-f7d4e67a92aaa84e-00", + "traceparent": "00-783de9da4824684aaa3311899b074d7e-2f8388bf9d1f2a4e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3f1bb1dd35221989dc01b4801da37148", "x-ms-return-client-request-id": "true" @@ -25,10 +26,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "8", + "Content-Length": "260", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +38,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.1593354, @@ -68,7 +68,7 @@ ], "Variables": { "RandomSeed": "1278407184", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json index e9e53c590fa5..90216c71355f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-f7fda48154882946accc5cf2f8bced35-6b26a21ebf82db43-00", + "traceparent": "00-99fcec8474f493459f8b3c6d144cf27f-a81069527e61d542-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "943874a0a80aa2a6a01accb8f84c3db7", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2984", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:47 GMT", + "Content-Length": "2567", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -57,19 +57,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -89,19 +77,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -151,19 +127,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -171,16 +135,17 @@ } }, { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-595b803d019512479c57b20ce984d5cc-f37529bf16fda14d-00", + "traceparent": "00-3d4e5062fefa9a44a2925766becb5d8f-63d32f3557fb554e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "96ac0b04cf88a5af76be6cb10318eb36", "x-ms-return-client-request-id": "true" @@ -196,10 +161,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1429", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "7", + "Content-Length": "1010", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -208,7 +173,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -225,19 +189,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -256,19 +208,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -287,19 +227,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -309,7 +237,7 @@ ], "Variables": { "RandomSeed": "777577952", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json index e144fd3a0a1c..97386a81a3ac 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-ca39c296d9165e4eb67472026980c629-2e0f6e6da443e749-00", + "traceparent": "00-2f3b63067828a84d9c58ee125d1e03a9-1e9aa98ed57add42-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3cf063fa37842845712502311e7afb0b", "x-ms-return-client-request-id": "true" @@ -26,10 +27,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2984", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "9", + "Content-Length": "2567", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "24", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -57,19 +57,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -89,19 +77,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -151,19 +127,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -171,16 +135,17 @@ } }, { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-707a22ee116d2346a26ae241a6565bec-b1ca555068356440-00", + "traceparent": "00-e4ada4f06a4adb48bac9f31c8e93a3f2-1bef4c2d41d9c244-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "95d80ea638dce1209f1a7d2135ce0bdb", "x-ms-return-client-request-id": "true" @@ -196,9 +161,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1429", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", + "Content-Length": "1010", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", @@ -208,7 +173,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "value": [ { "@search.score": 1.0, @@ -225,19 +189,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -256,19 +208,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -287,19 +227,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] } @@ -309,7 +237,7 @@ ], "Variables": { "RandomSeed": "171018898", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json index 3496127d272c..7db42218f815 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "88", "Content-Type": "application/json", - "traceparent": "00-96a49c50e8647f4ba8b768f59760af0d-c8e31f2bb0cbb04f-00", + "traceparent": "00-5122a09de8221349a01c75e94aba50ba-1428e8564cf7dd45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5ce2f2d871868dbadfdf3c78e9ae7044", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "141", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "3", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,7 +47,7 @@ ], "Variables": { "RandomSeed": "455367892", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json index d83eee68cae8..ca64e13ed442 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "88", "Content-Type": "application/json", - "traceparent": "00-a13312090fc61d42b2f54b1d9f66afa0-d1b7acf8a111ba47-00", + "traceparent": "00-87b09e1373b88c4c95878f09358f3a8e-78f86194efd2bd43-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f18dbf637d46a3edd29262677b02b0cd", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "141", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:36 GMT", - "elapsed-time": "3", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -46,7 +47,7 @@ ], "Variables": { "RandomSeed": "1660709923", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json index 81a886b73384..c254c371d310 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-c812aa8c598ea541bc9168252f5e69cf-42ffb2458ef9e248-00", + "traceparent": "00-096efd143bb1d946989d9374ee6589f3-c200a61647ac444a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ee0ca512248c0de779599998022281eb", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7195", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "9", + "Content-Length": "6355", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@odata.count": 10, "value": [ { @@ -56,19 +56,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -87,19 +75,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -118,19 +94,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -149,19 +113,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -180,19 +132,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -260,19 +200,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -324,19 +252,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -377,7 +293,7 @@ ], "Variables": { "RandomSeed": "942192075", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json index 4a8ac70b3c14..6517772af9cf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-0fbc3edc425a8a4eb5bc8a07ab3660e7-7f1e0ec60c386f4c-00", + "traceparent": "00-c55c642ec1642b4f9eb37a85b03729fc-38de40f70648644c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ec36c2156b803da08be8e3b0e36b5e03", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7195", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:37 GMT", + "Content-Length": "6355", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@odata.count": 10, "value": [ { @@ -56,19 +56,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -87,19 +75,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -118,19 +94,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -149,19 +113,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -180,19 +132,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -260,19 +200,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -324,19 +252,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -377,7 +293,7 @@ ], "Variables": { "RandomSeed": "1386788363", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json index 5135de4d843c..56ae512f90a8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "197", "Content-Type": "application/json", - "traceparent": "00-b6912ff49567da419bff3d6ef346cf49-5453275fa8f6b843-00", + "traceparent": "00-6318b0ce33d3d84cb518629ef89c4edb-3a4e3adc84567847-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "965c538fc5411c6fdd487a92d9b9906e", "x-ms-return-client-request-id": "true" @@ -30,10 +31,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8161", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:37:48 GMT", - "elapsed-time": "20", + "Content-Length": "7321", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:21:33 GMT", + "elapsed-time": "17", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,7 +43,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.facets": { "lastRenovationDate": [ { @@ -183,19 +183,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -214,19 +202,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -245,19 +221,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -276,19 +240,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -307,19 +259,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -387,19 +327,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -451,19 +379,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -504,7 +420,7 @@ ], "Variables": { "RandomSeed": "110101261", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json index 12d71cf2b8fb..1ad116c1b312 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "197", "Content-Type": "application/json", - "traceparent": "00-e3353327a7802849a60cc89068794110-d5c54c91a24cbb4c-00", + "traceparent": "00-17b6967d81caef488a27b9d71cc2e168-a4a6ab5b7a624142-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200311.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "16adb1f6d36bac3c651ff0daca82a1d8", "x-ms-return-client-request-id": "true" @@ -30,10 +31,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8161", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 11 Mar 2020 18:39:37 GMT", - "elapsed-time": "18", + "Content-Length": "7321", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,7 +43,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-amyysbpg.search.windows.net/indexes(\u0027gerhvwda\u0027)/$metadata#docs(*)", "@search.facets": { "lastRenovationDate": [ { @@ -183,19 +183,7 @@ "smokingAllowed": false, "lastRenovationDate": "2010-06-27T00:00:00Z", "rating": 5, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 47.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -214,19 +202,7 @@ "smokingAllowed": true, "lastRenovationDate": "1982-04-28T00:00:00Z", "rating": 1, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 49.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -245,19 +221,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 46.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -276,19 +240,7 @@ "smokingAllowed": false, "lastRenovationDate": "1995-07-01T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -307,19 +259,7 @@ "smokingAllowed": false, "lastRenovationDate": "2012-08-12T00:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -122.131577, - 48.678581 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": null, "rooms": [] }, @@ -387,19 +327,7 @@ "smokingAllowed": true, "lastRenovationDate": "1970-01-18T05:00:00Z", "rating": 4, - "location": { - "type": "Point", - "coordinates": [ - -73.975403, - 40.760586 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "677 5th Ave", "city": "New York", @@ -451,19 +379,7 @@ "smokingAllowed": true, "lastRenovationDate": "1999-09-06T00:00:00Z", "rating": 3, - "location": { - "type": "Point", - "coordinates": [ - -78.940483, - 35.90416 - ], - "crs": { - "type": "name", - "properties": { - "name": "EPSG:4326" - } - } - }, + "location": null, "address": { "streetAddress": "6910 Fayetteville Rd", "city": "Durham", @@ -504,7 +420,7 @@ ], "Variables": { "RandomSeed": "316706226", - "SearchIndexName": "gerhvwda", - "SearchServiceName": "azs-net-amyysbpg" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json index f4f46a3dba02..1ea5e920ae7d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-e520f609709e4e45b73bf04ec0f0f04c-a5ef6590353e1446-00", + "traceparent": "00-583aff289b2bd54f968b705a50883dc5-3a949f0859d17647-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "41ddfe30e0034827c87719e46d01721a", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", - "elapsed-time": "150", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "39", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,14 +36,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "1436621410", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json index 44666bea7b3a..abc483b1e80d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-bad25bf0245eda4bbb417e97426aefc4-9a554fa92f6f144f-00", + "traceparent": "00-b568abffaeae3a409569364b3b36f757-58ed6aea6259e740-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c86e99798766c4b9c0561853279d9329", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "7", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,14 +36,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "121381126", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json index 751f69ccb3d0..5ac5b0a603f5 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-6905ed62f459c545ae3b3947c7c7006a-2c468f42e40c4a41-00", + "traceparent": "00-0b4ccf12aa1f1a41be4baaaafd63bb86-c7327705ad8af04b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "30514a78ff01748af3ca8bcba92a7563", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "431", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", - "elapsed-time": "13", + "Content-Length": "330", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "110296479", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json index 9b30bfa94a24..9ddd8fad6ea0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-54d3a7249c53c94183a5bc5b2994f191-b6695f500f63a844-00", + "traceparent": "00-71592a113cc2b74da89a7cbc8a920fe2-3ff4158624adcd4f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5ec719d50b83670287b542650f09d244", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "431", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "17", + "Content-Length": "330", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -52,7 +52,7 @@ ], "Variables": { "RandomSeed": "1932974835", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json index 7d814d0f129a..6b1447ab4543 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "52", "Content-Type": "application/json", - "traceparent": "00-4d8e99b9c58b35458c86ef15f699453f-7d0df99dc615c844-00", + "traceparent": "00-525c29c8df64ba4f9fafc6f80548955c-3c6575232bf1e340-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "6f210e6706adc4673713dcb4686ee1a1", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", - "elapsed-time": "13", + "Content-Length": "300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Countryside Hotel", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "171521149", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json index c6b7bfca25fc..0a470ec6a9d9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "52", "Content-Type": "application/json", - "traceparent": "00-d3630ada8d6a1f4c8bfbef6a52d29c4e-5118c43193b40c4c-00", + "traceparent": "00-2e56702ae65dbc40b9e9455947cf5c9f-d2d954d85ac64a4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "005f5d74b17ed29f1f448cd542419d2f", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "12", + "Content-Length": "300", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Countryside Hotel", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "1819874471", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json index c50dc99f88a8..7220c46e409c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-993be116a838664897e7489be47ae3e1-351c971004e74247-00", + "traceparent": "00-d129126cdb685e4da9cda692886bf83f-420316ee4f39cc4b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "a64d6cc0a0ab2bb72beceacef8866324", "x-ms-return-client-request-id": "true" @@ -22,10 +23,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", - "elapsed-time": "7", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -34,14 +35,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "1333988927", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json index aad6d736b3c8..6d89947f6744 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-d00ea0761ae31249b970ca0583bd67af-66d0a67792e6ae4a-00", + "traceparent": "00-69da60f27d6f104594bf4b3cf617600e-f5ad1a0cb117064b-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "56ac557ee92414d470619bf75896109a", "x-ms-return-client-request-id": "true" @@ -22,10 +23,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "113", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "6", + "Content-Length": "12", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -34,14 +35,13 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [] } } ], "Variables": { "RandomSeed": "752411689", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json index 5857717ca772..def12becca69 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "159", "Content-Type": "application/json", - "traceparent": "00-9e074c6a4a1e184cb504e47e0ef4cebd-511f08ad095b4941-00", + "traceparent": "00-818fb3eeb06ca54c8fbd64c0a4d6a6b4-5f2d3c678c4e3247-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "0387e2d36fbcb030f57c066150877d06", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "400", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", + "Content-Length": "299", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like luxury \u003Cb\u003Ehotels\u003C/b\u003E. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E.", @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "1967020220", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json index 71dc7d60025b..91b6f5f30518 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "159", "Content-Type": "application/json", - "traceparent": "00-1cb57f037f37cc4984bf39edb0e92570-82e390b3d819b14c-00", + "traceparent": "00-f4051ee88421e949b18ed52e49334b31-dbf7e8ecfb899c45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "58765b39dfd7902762f8f07e1710563b", "x-ms-return-client-request-id": "true" @@ -26,9 +27,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "400", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", + "Content-Length": "299", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", @@ -38,7 +39,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like luxury \u003Cb\u003Ehotels\u003C/b\u003E. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E.", @@ -50,7 +50,7 @@ ], "Variables": { "RandomSeed": "756773262", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json index 41ba4e427f76..237d6d9d004b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "61", "Content-Type": "application/json", - "traceparent": "00-437d78286a3cbb4d8b309372b215f4bc-5dc8ff81cf96154e-00", + "traceparent": "00-c4c1e569025c9f42939871ec8d644f50-d2d7e8bb0cee2948-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "63dd7aed7b5561be2080a9c3bb921533", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "404", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:47 GMT", - "elapsed-time": "10", + "Content-Length": "303", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "@search.coverage": 100.0, "value": [ { @@ -48,7 +48,7 @@ ], "Variables": { "RandomSeed": "58034553", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json index f247b4082bd3..057e5a06914b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "61", "Content-Type": "application/json", - "traceparent": "00-c699e9247d11784897672ce9db158320-cd987f3f6843fd4a-00", + "traceparent": "00-d465480928fa1e44abc2ce0b035c44bf-cf29a61eab4ae74c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "ae08a93cc04157c1ed077c1d413dff2c", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "404", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "6", + "Content-Length": "303", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "@search.coverage": 100.0, "value": [ { @@ -48,7 +48,7 @@ ], "Variables": { "RandomSeed": "85825459", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json index 1f82414bbbea..21c3397651e4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-77614d513ea4fd44a35b4eb98dfeab5d-e154f53f63783447-00", + "traceparent": "00-853f38ae15c5e44c826bd211be803076-ea33cc85ad76dc4d-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "c005437f5bfa125b3dd553af1e9c6eb6", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "858", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "57", + "Content-Length": "757", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "1406065597", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json index 379e611ec1b8..7a4399e25645 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-d2345351e784d3478dc792f4c39b3af9-f934e054fca7454b-00", + "traceparent": "00-aca83e497ae31043abff0f3cf8229e01-e0ed03a396f0cd48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "d1b2faf219913e4332eab23606965304", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "858", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "12", + "Content-Length": "757", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -63,7 +63,7 @@ ], "Variables": { "RandomSeed": "53198105", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json index 0daf51424481..399653d36039 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-0be258d4682234479ac5849efdb90f6e-b5d7031d429d6c42-00", + "traceparent": "00-1af39fd3d719784f8c24616d552a0a6e-17ff6011ba67294f-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5d07e8d3ed806aabe001e6eb2ce02dc7", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "280", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "9", + "Content-Length": "179", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Secret Point Motel", @@ -59,7 +59,7 @@ ], "Variables": { "RandomSeed": "1333403613", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json index 2594ae428610..076fd7345812 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-18caac2e0510cc4d848fdb066f1172b6-39830236b80eb242-00", + "traceparent": "00-0cdb6e1683200047a9c19e0c37769d52-a2da312c277e0c41-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "85b7c493e146d7e6cc030dc045845c8d", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "280", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "8", + "Content-Length": "179", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Secret Point Motel", @@ -59,7 +59,7 @@ ], "Variables": { "RandomSeed": "83938125", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json index 27f677b133b2..cbd88149fbb9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-8ff206a140d33a4da665d0c415ab6a2e-3b95411035898644-00", + "traceparent": "00-d164a6a23b983e458ae2a6f9b9ef7a5f-c43f16672d626d48-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "44b116808507066b7104fa5565440add", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "652", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "10", + "Content-Length": "551", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -56,7 +56,7 @@ ], "Variables": { "RandomSeed": "2021917347", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json index e52ba0e4d5fb..7b0ae3d6e669 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-ff6e7cf5a8f4da43b2dac899917b9ae4-25b87747bcdac448-00", + "traceparent": "00-06fb868cc99d7a4581f269817347fa15-669e6f67d8f53a45-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f2920ec48064c1d50a0ecf326c97535e", "x-ms-return-client-request-id": "true" @@ -24,10 +25,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "652", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "7", + "Content-Length": "551", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -36,7 +37,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.", @@ -56,7 +56,7 @@ ], "Variables": { "RandomSeed": "1959444883", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json index 7c1d825cdeb5..f93c4e66f0bb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-978d2d0250b49443afc1e62ff252cd8b-e6d4c6e37c96e64a-00", + "traceparent": "00-a43cb0d0dc78fe489b94bed85c1d2674-3ebd9181e4ea6543-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "3a6d7ff45109c28a122f45e4f31e0868", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "435", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "9", + "Content-Length": "334", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", @@ -51,7 +51,7 @@ ], "Variables": { "RandomSeed": "1377017195", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json index 20c255e540b8..ea7a25ffebff 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-47de046b66422d4a9e6d44610bb84859-53172e5fbb251247-00", + "traceparent": "00-55e0759a6e628f4bb68919da2ddd9d38-9938d1e8115c4946-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "8aea32486b8e73b463e7b6ba609fe73d", "x-ms-return-client-request-id": "true" @@ -23,9 +24,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "435", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", + "Content-Length": "334", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", @@ -51,7 +51,7 @@ ], "Variables": { "RandomSeed": "1512668849", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json index 90fc3829ccf6..27cfc933ffcd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-c02d5c6cb549964fbb6a8bd65cf34479-136d95f943f67f40-00", + "traceparent": "00-87e30c20df271f42aa1368300a9c35d9-3274dea5b3f7f44e-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "81b8a3d9bab6944220aed8b336142413", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "435", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "7", + "Content-Length": "334", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", @@ -51,7 +51,7 @@ ], "Variables": { "RandomSeed": "861171183", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json index f8e36cdef884..035a9aab5f78 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-6cd60d8da830b84096265006edd34c38-66874ae8bc75c847-00", + "traceparent": "00-3fcc89f7ce36dd42a62e3cd0ab9fbd9f-8d15db678f372a4a-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "5ed4e615262c9336eedc0e0158df5f99", "x-ms-return-client-request-id": "true" @@ -23,10 +24,10 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "435", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "8", + "Content-Length": "334", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,7 +36,6 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains" }, "ResponseBody": { - "@odata.context": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/$metadata#docs(*)", "value": [ { "@search.text": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer \u0026 dryer, 24/7 support, bowling alley, fitness center and more.", @@ -51,7 +51,7 @@ ], "Variables": { "RandomSeed": "310565316", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json index 0907c2657a75..dc36f43ad26f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-0093ac7d36376943957e782a1097f990-0376d7556d4cc84d-00", + "traceparent": "00-c70f949e811e134db4fbc3bf91afab6d-b45589ecea038b47-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "82280cacac79a2d1f134fdc3c67e19e6", "x-ms-return-client-request-id": "true" @@ -24,8 +25,8 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "147", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:53 GMT", "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", @@ -44,7 +45,7 @@ ], "Variables": { "RandomSeed": "1418306410", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json index 8e4d96554c6b..f7ae04f6fb65 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-33b711590e37e340b7e5dd5847a25c8f-94ddc6fab84a6241-00", + "traceparent": "00-97655c752905504198fde3dcb76ca2b4-ced3f8de5da36f46-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "bcadf003578d82f6430593e81346ab31", "x-ms-return-client-request-id": "true" @@ -24,9 +25,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "147", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "4", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -44,7 +45,7 @@ ], "Variables": { "RandomSeed": "931425957", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json index 0d7df6464d89..945d0a352580 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-0c0413275a356247b35aab27000181ab-8c7ad372711f404b-00", + "traceparent": "00-e617ef15d1c8b848a46fe2591807f3f7-aeaa9f3c69d0a440-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "1cd2d2b1034fc6dee7c6001c8d1088ce", "x-ms-return-client-request-id": "true" @@ -25,9 +26,9 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "143", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", - "elapsed-time": "3", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -45,7 +46,7 @@ ], "Variables": { "RandomSeed": "1402415131", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json index 899484be828d..a8d00ded9164 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json @@ -1,16 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wvqysflr.search.windows.net/indexes(\u0027bapsfvkb\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-jcswnkcn.search.windows.net/indexes(\u0027mesaejwj\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-15e826c6141fef4b8d229c368c3fdd2f-c7bf860cb1346d4a-00", + "traceparent": "00-e9516b49d91712468c574147be558979-9a789166c444194c-00", "User-Agent": [ - "azsdk-net-Search/11.0.0-dev.20200309.1", - "(.NET Core 4.6.28325.01; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/1.0.0-dev.20200424.1", + "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.18363 )" ], "x-ms-client-request-id": "f59f7a8885a1f362618688d19579334d", "x-ms-return-client-request-id": "true" @@ -25,8 +26,8 @@ "Cache-Control": "no-cache", "Content-Language": "en", "Content-Length": "143", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Mon, 09 Mar 2020 09:47:48 GMT", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Sat, 25 Apr 2020 01:24:54 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", @@ -45,7 +46,7 @@ ], "Variables": { "RandomSeed": "1081499379", - "SearchIndexName": "bapsfvkb", - "SearchServiceName": "azs-net-wvqysflr" + "SearchIndexName": "mesaejwj", + "SearchServiceName": "azs-net-jcswnkcn" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs index 7f70932490fc..ee7dd1c35a65 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; +using System.Linq; using System.Text; using System.Text.Encodings.Web; using Azure.Core.Testing; @@ -20,33 +21,28 @@ public class SearchRecordedTestSanitizer : RecordedTestSanitizer private const string ApiKeyHeaderName = "api-key"; /// - /// Secret values to sanitize from body. + /// Sanitizes all headers, variables, and body content of a . /// - private readonly HashSet _secrets = new HashSet(); - - /// - /// Redact sensitive body content. - /// - /// The Content-Type of the body content. - /// The body content. - /// The sanitized body content. - public override string SanitizeTextBody(string contentType, string body) + /// The to sanitize. + public override void Sanitize(RecordSession session) { - if (_secrets.Count > 0 && - !string.IsNullOrEmpty(body) && - contentType != null && - contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase)) + HashSet secrets = new HashSet(); + + foreach (KeyValuePair variable in session.Variables.ToArray()) { - StringBuilder sanitized = new StringBuilder(body); - foreach (string secret in _secrets) + session.Variables[variable.Key] = SanitizeVariable(secrets, variable.Key, variable.Value); + } + + foreach (RecordEntry entry in session.Entries) + { + if (secrets.Count > 0) { - sanitized.Replace(secret, SanitizeValue); + SanitizeBody(secrets, entry.Request); + SanitizeBody(secrets, entry.Response); } - - return sanitized.ToString(); } - return base.SanitizeTextBody(contentType, body); + base.Sanitize(session); } /// @@ -59,28 +55,54 @@ public override void SanitizeHeaders(IDictionary headers) { headers[ApiKeyHeaderName] = new string[] { SanitizeValue }; } + base.SanitizeHeaders(headers); } + /// + /// Redact sensitive body content. + /// + /// Any secrets found in . + /// The to sanitize. + private static void SanitizeBody(ISet secrets, RecordEntryMessage message) + { + if (message.Body != null && + message.TryGetContentType(out string contentType) && + contentType != null && + contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase) && + message.TryGetBodyAsText(out string body) && + !string.IsNullOrEmpty(body)) + { + StringBuilder sanitized = new StringBuilder(body); + foreach (string secret in secrets) + { + sanitized.Replace(secret, SanitizeValue); + } + + message.Body = Encoding.UTF8.GetBytes(sanitized.ToString()); + } + } + /// /// Redact sensitive variables. /// - /// The name of the variable. - /// The value of the variable. + /// to add any found secrets. + /// The name of the variable. + /// The value of the variable. /// The sanitized variable value. - public override string SanitizeVariable(string variableName, string environmentVariableValue) + private static string SanitizeVariable(ISet secrets, string name, string value) { - if (SearchTestEnvironment.StorageAccountKeyVariableName.Equals(variableName, StringComparison.OrdinalIgnoreCase)) + if (SearchTestEnvironment.StorageAccountKeyVariableName.Equals(name, StringComparison.OrdinalIgnoreCase)) { // Assumes the secret content is destined to appear in JSON, for which certain common characters in account keys are escaped. // See https://github.com/dotnet/runtime/blob/8640eed0/src/libraries/System.Text.Json/src/System/Text/Json/Writer/JsonWriterHelper.Escaping.cs - string encoded = JavaScriptEncoder.Default.Encode(environmentVariableValue); - _secrets.Add(encoded); + string encoded = JavaScriptEncoder.Default.Encode(value); + secrets.Add(encoded); return SanitizeValue; } - return base.SanitizeVariable(variableName, environmentVariableValue); + return value; } } } diff --git a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs index ef5000f303c0..0b9dc721f71f 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs @@ -11,9 +11,9 @@ public SearchTestEnvironment() : base("search") { } - public string SearchStorageName => GetRecordedVariable("AZURE_SEARCH_STORAGE_NAME"); + public string SearchStorageName => GetRecordedVariable("SEARCH_STORAGE_NAME"); public string SearchStorageKey => GetRecordedVariable(StorageAccountKeyVariableName); - public static string StorageAccountKeyVariableName = "AZURE_SEARCH_STORAGE_KEY"; + public static string StorageAccountKeyVariableName = "SEARCH_STORAGE_KEY"; } -} \ No newline at end of file +} diff --git a/sdk/search/test-resources.json b/sdk/search/test-resources.json index 362e2f91c1af..2f73aa7be52c 100644 --- a/sdk/search/test-resources.json +++ b/sdk/search/test-resources.json @@ -63,11 +63,11 @@ } ], "outputs": { - "AZURE_SEARCH_STORAGE_NAME": { + "SEARCH_STORAGE_NAME": { "type": "string", "value": "[variables('storageAccountName')]" }, - "AZURE_SEARCH_STORAGE_KEY": { + "SEARCH_STORAGE_KEY": { "type": "string", "value": "[listKeys(variables('storageAccountName'), variables('storageApiVersion')).keys[0].value]" }