diff --git a/sdk/search/Azure.Search.Documents/CHANGELOG.md b/sdk/search/Azure.Search.Documents/CHANGELOG.md index 56f180588e94..685c019bdb15 100644 --- a/sdk/search/Azure.Search.Documents/CHANGELOG.md +++ b/sdk/search/Azure.Search.Documents/CHANGELOG.md @@ -2,9 +2,15 @@ ## 11.0.0-preview.5 (Unreleased) -### Minor Changes +### Changed - Changed version to 11.0.0. +- Removed preview version `SearchClientOptions.ServiceVersion.V2019_05_06_Preview` + and added version `SearchClientOptions.ServiceVersion.V2020_06_30`. + +### Removed + +- Removed `SearchServiceCounters.SkillsetCounter`. ## 1.0.0-preview.4 (2020-06-09) diff --git a/sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.netstandard2.0.cs b/sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.netstandard2.0.cs index bf6878c14e07..e1caf2cec4cd 100644 --- a/sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.netstandard2.0.cs +++ b/sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.netstandard2.0.cs @@ -55,11 +55,11 @@ public SearchClient(System.Uri endpoint, string indexName, Azure.AzureKeyCredent } public partial class SearchClientOptions : Azure.Core.ClientOptions { - public SearchClientOptions(Azure.Search.Documents.SearchClientOptions.ServiceVersion version = Azure.Search.Documents.SearchClientOptions.ServiceVersion.V2019_05_06_Preview) { } + public SearchClientOptions(Azure.Search.Documents.SearchClientOptions.ServiceVersion version = Azure.Search.Documents.SearchClientOptions.ServiceVersion.V2020_06_30) { } public Azure.Search.Documents.SearchClientOptions.ServiceVersion Version { get { throw null; } } public enum ServiceVersion { - V2019_05_06_Preview = 1, + V2020_06_30 = 1, } } public static partial class SearchFilter @@ -1306,7 +1306,6 @@ internal SearchServiceCounters() { } public Azure.Search.Documents.Indexes.Models.SearchResourceCounter DocumentCounter { get { throw null; } } public Azure.Search.Documents.Indexes.Models.SearchResourceCounter IndexCounter { get { throw null; } } public Azure.Search.Documents.Indexes.Models.SearchResourceCounter IndexerCounter { get { throw null; } } - public Azure.Search.Documents.Indexes.Models.SearchResourceCounter SkillsetCounter { get { throw null; } } public Azure.Search.Documents.Indexes.Models.SearchResourceCounter StorageSizeCounter { get { throw null; } } public Azure.Search.Documents.Indexes.Models.SearchResourceCounter SynonymMapCounter { get { throw null; } } } @@ -1999,7 +1998,7 @@ public static partial class SearchModelFactory public static Azure.Search.Documents.Models.SearchResultsPage SearchResultsPage(Azure.Search.Documents.Models.SearchResults results) { throw null; } public static Azure.Search.Documents.Models.SearchResults SearchResults(System.Collections.Generic.IEnumerable> values, long? totalCount, System.Collections.Generic.IDictionary> facets, double? coverage, Azure.Response rawResponse) { throw null; } public static Azure.Search.Documents.Models.SearchResult SearchResult(T document, double? score, System.Collections.Generic.IDictionary> highlights) { throw null; } - public static Azure.Search.Documents.Indexes.Models.SearchServiceCounters SearchServiceCounters(Azure.Search.Documents.Indexes.Models.SearchResourceCounter documentCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter indexCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter indexerCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter dataSourceCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter storageSizeCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter synonymMapCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter skillsetCounter) { throw null; } + public static Azure.Search.Documents.Indexes.Models.SearchServiceCounters SearchServiceCounters(Azure.Search.Documents.Indexes.Models.SearchResourceCounter documentCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter indexCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter indexerCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter dataSourceCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter storageSizeCounter, Azure.Search.Documents.Indexes.Models.SearchResourceCounter synonymMapCounter) { throw null; } public static Azure.Search.Documents.Indexes.Models.SearchServiceLimits SearchServiceLimits(int? maxFieldsPerIndex, int? maxFieldNestingDepthPerIndex, int? maxComplexCollectionFieldsPerIndex, int? maxComplexObjectsInCollectionsPerDocument) { throw null; } public static Azure.Search.Documents.Indexes.Models.SearchServiceStatistics SearchServiceStatistics(Azure.Search.Documents.Indexes.Models.SearchServiceCounters counters, Azure.Search.Documents.Indexes.Models.SearchServiceLimits limits) { throw null; } public static Azure.Search.Documents.Models.SearchSuggestion SearchSuggestion(T document, string text) { throw null; } diff --git a/sdk/search/Azure.Search.Documents/samples/Sample02_Service.md b/sdk/search/Azure.Search.Documents/samples/Sample02_Service.md index 13246168001f..b66cd8c804c0 100644 --- a/sdk/search/Azure.Search.Documents/samples/Sample02_Service.md +++ b/sdk/search/Azure.Search.Documents/samples/Sample02_Service.md @@ -182,7 +182,8 @@ SearchIndexerSkillset skillset = new SearchIndexerSkillset( skillsetName, new SearchIndexerSkill[] { translationSkill, conditionalSkill }) { - CognitiveServicesAccount = new CognitiveServicesAccountKey(Environment.GetEnvironmentVariable("COGNITIVE_KEY")) + CognitiveServicesAccount = new CognitiveServicesAccountKey( + Environment.GetEnvironmentVariable("COGNITIVE_SERVICES_KEY")) }; await indexerClient.CreateSkillsetAsync(skillset); diff --git a/sdk/search/Azure.Search.Documents/src/Generated/DataSourcesRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/DataSourcesRestClient.cs index 9b149a092c70..0a0eb7ed20b2 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/DataSourcesRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/DataSourcesRestClient.cs @@ -31,7 +31,7 @@ internal partial class DataSourcesRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public DataSourcesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public DataSourcesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/DocumentsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/DocumentsRestClient.cs index 9b753e7ca7f2..ba16a133a885 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/DocumentsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/DocumentsRestClient.cs @@ -34,7 +34,7 @@ internal partial class DocumentsRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public DocumentsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, string indexName, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public DocumentsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, string indexName, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/IndexersRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/IndexersRestClient.cs index 8ba497001f17..5ee2e34c0eb2 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/IndexersRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/IndexersRestClient.cs @@ -31,7 +31,7 @@ internal partial class IndexersRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public IndexersRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public IndexersRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/IndexesRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/IndexesRestClient.cs index ef31412cf61b..133963034d81 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/IndexesRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/IndexesRestClient.cs @@ -31,7 +31,7 @@ internal partial class IndexesRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public IndexesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public IndexesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.Serialization.cs b/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.Serialization.cs index 8a270057fab7..8eb36a286572 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.Serialization.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.Serialization.cs @@ -20,7 +20,6 @@ internal static SearchServiceCounters DeserializeSearchServiceCounters(JsonEleme SearchResourceCounter dataSourcesCount = default; SearchResourceCounter storageSize = default; SearchResourceCounter synonymMaps = default; - SearchResourceCounter skillsetCount = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("documentCount")) @@ -53,13 +52,8 @@ internal static SearchServiceCounters DeserializeSearchServiceCounters(JsonEleme synonymMaps = SearchResourceCounter.DeserializeSearchResourceCounter(property.Value); continue; } - if (property.NameEquals("skillsetCount")) - { - skillsetCount = SearchResourceCounter.DeserializeSearchResourceCounter(property.Value); - continue; - } } - return new SearchServiceCounters(documentCount, indexesCount, indexersCount, dataSourcesCount, storageSize, synonymMaps, skillsetCount); + return new SearchServiceCounters(documentCount, indexesCount, indexersCount, dataSourcesCount, storageSize, synonymMaps); } } } diff --git a/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.cs b/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.cs index 8ede0818f380..6b0586873bb6 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/Models/SearchServiceCounters.cs @@ -19,8 +19,7 @@ public partial class SearchServiceCounters /// Total number of data sources. /// Total size of used storage in bytes. /// Total number of synonym maps. - /// Total number of skillsets. - internal SearchServiceCounters(SearchResourceCounter documentCounter, SearchResourceCounter indexCounter, SearchResourceCounter indexerCounter, SearchResourceCounter dataSourceCounter, SearchResourceCounter storageSizeCounter, SearchResourceCounter synonymMapCounter, SearchResourceCounter skillsetCounter) + internal SearchServiceCounters(SearchResourceCounter documentCounter, SearchResourceCounter indexCounter, SearchResourceCounter indexerCounter, SearchResourceCounter dataSourceCounter, SearchResourceCounter storageSizeCounter, SearchResourceCounter synonymMapCounter) { if (documentCounter == null) { @@ -46,10 +45,6 @@ internal SearchServiceCounters(SearchResourceCounter documentCounter, SearchReso { throw new ArgumentNullException(nameof(synonymMapCounter)); } - if (skillsetCounter == null) - { - throw new ArgumentNullException(nameof(skillsetCounter)); - } DocumentCounter = documentCounter; IndexCounter = indexCounter; @@ -57,7 +52,6 @@ internal SearchServiceCounters(SearchResourceCounter documentCounter, SearchReso DataSourceCounter = dataSourceCounter; StorageSizeCounter = storageSizeCounter; SynonymMapCounter = synonymMapCounter; - SkillsetCounter = skillsetCounter; } /// Total number of documents across all indexes in the service. @@ -72,7 +66,5 @@ internal SearchServiceCounters(SearchResourceCounter documentCounter, SearchReso public SearchResourceCounter StorageSizeCounter { get; } /// Total number of synonym maps. public SearchResourceCounter SynonymMapCounter { get; } - /// Total number of skillsets. - public SearchResourceCounter SkillsetCounter { get; } } } diff --git a/sdk/search/Azure.Search.Documents/src/Generated/ServiceRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/ServiceRestClient.cs index 871004511e4e..70890c62bc07 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/ServiceRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/ServiceRestClient.cs @@ -31,7 +31,7 @@ internal partial class ServiceRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public ServiceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public ServiceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/SkillsetsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/SkillsetsRestClient.cs index 0f93f4049e1d..5f72e0041627 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/SkillsetsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/SkillsetsRestClient.cs @@ -31,7 +31,7 @@ internal partial class SkillsetsRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public SkillsetsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public SkillsetsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Generated/SynonymMapsRestClient.cs b/sdk/search/Azure.Search.Documents/src/Generated/SynonymMapsRestClient.cs index 050512a0c5ad..bb239c99d999 100644 --- a/sdk/search/Azure.Search.Documents/src/Generated/SynonymMapsRestClient.cs +++ b/sdk/search/Azure.Search.Documents/src/Generated/SynonymMapsRestClient.cs @@ -31,7 +31,7 @@ internal partial class SynonymMapsRestClient /// The tracking ID sent with the request to help with debugging. /// Api Version. /// This occurs when one of the required arguments is null. - public SynonymMapsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2019-05-06-Preview") + public SynonymMapsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, Guid? xMsClientRequestId = null, string apiVersion = "2020-06-30") { if (endpoint == null) { diff --git a/sdk/search/Azure.Search.Documents/src/Models/SearchModelFactory.cs b/sdk/search/Azure.Search.Documents/src/Models/SearchModelFactory.cs index 6adf996f59af..a0f360a23c1e 100644 --- a/sdk/search/Azure.Search.Documents/src/Models/SearchModelFactory.cs +++ b/sdk/search/Azure.Search.Documents/src/Models/SearchModelFactory.cs @@ -131,7 +131,6 @@ public static SearchResourceCounter SearchResourceCounter( /// Total number of data sources. /// Total size of used storage in bytes. /// Total number of synonym maps. - /// Total number of skillsets. /// A new SearchServiceCounters instance for mocking. public static SearchServiceCounters SearchServiceCounters( SearchResourceCounter documentCounter, @@ -139,9 +138,8 @@ public static SearchServiceCounters SearchServiceCounters( SearchResourceCounter indexerCounter, SearchResourceCounter dataSourceCounter, SearchResourceCounter storageSizeCounter, - SearchResourceCounter synonymMapCounter, - SearchResourceCounter skillsetCounter) => - new SearchServiceCounters(documentCounter, indexCounter, indexerCounter, dataSourceCounter, storageSizeCounter, synonymMapCounter, skillsetCounter); + SearchResourceCounter synonymMapCounter) => + new SearchServiceCounters(documentCounter, indexCounter, indexerCounter, dataSourceCounter, storageSizeCounter, synonymMapCounter); /// Initializes a new instance of SearchServiceLimits. /// The maximum allowed fields per index. diff --git a/sdk/search/Azure.Search.Documents/src/SearchClient.cs b/sdk/search/Azure.Search.Documents/src/SearchClient.cs index 846a7cd83e6a..f8cac5c20562 100644 --- a/sdk/search/Azure.Search.Documents/src/SearchClient.cs +++ b/sdk/search/Azure.Search.Documents/src/SearchClient.cs @@ -225,7 +225,7 @@ internal SearchClient( Debug.Assert(pipeline != null); Debug.Assert(diagnostics != null); Debug.Assert( - SearchClientOptions.ServiceVersion.V2019_05_06_Preview <= version && + SearchClientOptions.ServiceVersion.V2020_06_30 <= version && version <= SearchClientOptions.LatestVersion); Endpoint = endpoint; diff --git a/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs b/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs index 7b25962f8729..d7fafce59720 100644 --- a/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs +++ b/sdk/search/Azure.Search.Documents/src/SearchClientOptions.cs @@ -25,24 +25,24 @@ public enum ServiceVersion { #pragma warning disable CA1707 // Identifiers should not contain underscores /// - /// The 2019-05-06-Preview version of the Azure Cognitive Search + /// The 2020_06_30 version of the Azure Cognitive Search /// service. /// - V2019_05_06_Preview = 1 + V2020_06_30 = 1 #pragma warning restore CA1707 } /// /// The Latest service version supported by this client library. /// - internal const ServiceVersion LatestVersion = ServiceVersion.V2019_05_06_Preview; + internal const ServiceVersion LatestVersion = ServiceVersion.V2020_06_30; /// /// The service version to use when creating continuation tokens that /// can be passed between different client libraries. Changing this /// value requires updating . /// - internal const ServiceVersion ContinuationTokenVersion = ServiceVersion.V2019_05_06_Preview; + internal const ServiceVersion ContinuationTokenVersion = ServiceVersion.V2020_06_30; /// /// Gets the of the service API used when @@ -164,7 +164,7 @@ internal static partial class SearchExtensions public static SearchClientOptions.ServiceVersion Validate(this SearchClientOptions.ServiceVersion version) => version switch { - SearchClientOptions.ServiceVersion.V2019_05_06_Preview => version, + SearchClientOptions.ServiceVersion.V2020_06_30 => version, _ => throw CreateInvalidVersionException(version) }; @@ -186,7 +186,7 @@ public static SearchClientOptions.ServiceVersion Validate(this SearchClientOptio public static string ToVersionString(this SearchClientOptions.ServiceVersion version) => version switch { - SearchClientOptions.ServiceVersion.V2019_05_06_Preview => "2019-05-06-Preview", + SearchClientOptions.ServiceVersion.V2020_06_30 => "2020-06-30", _ => throw CreateInvalidVersionException(version) }; diff --git a/sdk/search/Azure.Search.Documents/src/autorest.md b/sdk/search/Azure.Search.Documents/src/autorest.md index e779301c5068..04d426326d48 100644 --- a/sdk/search/Azure.Search.Documents/src/autorest.md +++ b/sdk/search/Azure.Search.Documents/src/autorest.md @@ -12,8 +12,8 @@ we should merge the Service and Index swagger files together but for now we copy them locally in `/sdk/search/generate.ps1` and reference them here. ```yaml input-file: -- $(this-folder)/swagger/searchindex.json -- $(this-folder)/swagger/searchservice.json +- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0bc7853cb4d824bb6c310344dcc1b5f77cbe6bdd/specification/search/data-plane/Azure.Search/preview/2020-06-30/searchindex.json +- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0bc7853cb4d824bb6c310344dcc1b5f77cbe6bdd/specification/search/data-plane/Azure.Search/preview/2020-06-30/searchservice.json ``` ## Release hacks diff --git a/sdk/search/Azure.Search.Documents/src/swagger/searchindex.json b/sdk/search/Azure.Search.Documents/src/swagger/searchindex.json deleted file mode 100644 index 8f751cb3e6c4..000000000000 --- a/sdk/search/Azure.Search.Documents/src/swagger/searchindex.json +++ /dev/null @@ -1,1548 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "title": "SearchIndexClient", - "description": "Client that can be used to query an index and upload, merge, or delete documents.", - "version": "2019-05-06-Preview", - "x-ms-code-generation-settings": { - "useDateTimeOffset": true, - "syncMethods": "None" - } - }, - "x-ms-parameterized-host": { - "hostTemplate": "{endpoint}/indexes('{indexName}')", - "useSchemePrefix": false, - "parameters": [ - { - "$ref": "#/parameters/EndpointParameter" - }, - { - "$ref": "#/parameters/IndexNameParameter" - } - ] - }, - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/docs/$count": { - "get": { - "tags": [ - "Documents" - ], - "operationId": "Documents_Count", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Count-Documents" - }, - "x-ms-examples": { - "SearchIndexCountDocuments": { - "$ref": "./examples/SearchIndexCountDocuments.json" - } - }, - "description": "Queries the number of documents in the index.", - "parameters": [ - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "type": "integer", - "format": "int64" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs": { - "get": { - "tags": [ - "Documents" - ], - "operationId": "Documents_SearchGet", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" - }, - "x-ms-examples": { - "SearchIndexSearchDocumentsGet": { - "$ref": "./examples/SearchIndexSearchDocumentsGet.json" - } - }, - "description": "Searches for documents in the index.", - "parameters": [ - { - "name": "search", - "in": "query", - "type": "string", - "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.", - "x-ms-client-name": "SearchText" - }, - { - "name": "$count", - "in": "query", - "type": "boolean", - "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.", - "x-nullable": false, - "x-ms-client-name": "IncludeTotalResultCount", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "facet", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "collectionFormat": "multi", - "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs.", - "x-ms-client-name": "Facets", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "The OData $filter expression to apply to the search query.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "highlight", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.", - "x-ms-client-name": "HighlightFields", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "highlightPostTag", - "in": "query", - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "highlightPreTag", - "in": "query", - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "minimumCoverage", - "in": "query", - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "$orderby", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, and desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no OrderBy is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.", - "x-ms-client-name": "OrderBy", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "queryType", - "in": "query", - "type": "string", - "enum": [ - "simple", - "full" - ], - "x-ms-enum": { - "name": "QueryType", - "modelAsString": false, - "values": [ - { - "value": "simple", - "name": "Simple", - "description": "Uses the simple query syntax for searches. Search text is interpreted using a simple query language that allows for symbols such as +, * and \"\". Queries are evaluated across all searchable fields by default, unless the searchFields parameter is specified." - }, - { - "value": "full", - "name": "Full", - "description": "Uses the full Lucene query syntax for searches. Search text is interpreted using the Lucene query language which allows field-specific and weighted searches, as well as other advanced features." - } - ] - }, - "x-nullable": false, - "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "scoringParameter", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "collectionFormat": "multi", - "x-ms-client-name": "ScoringParameters", - "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes).", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "scoringProfile", - "in": "query", - "type": "string", - "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "searchFields", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "searchMode", - "in": "query", - "type": "string", - "enum": [ - "any", - "all" - ], - "x-ms-enum": { - "name": "SearchMode", - "modelAsString": false, - "values": [ - { - "value": "any", - "name": "Any", - "description": "Any of the search terms must be matched in order to count the document as a match." - }, - { - "value": "all", - "name": "All", - "description": "All of the search terms must be matched in order to count the document as a match." - } - ] - }, - "x-nullable": false, - "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "$select", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "$skip", - "in": "query", - "type": "integer", - "format": "int32", - "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use $skip due to this limitation, consider using $orderby on a totally-ordered key and $filter with a range query instead.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "name": "$top", - "in": "query", - "type": "integer", - "format": "int32", - "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results.", - "x-ms-parameter-grouping": { - "name": "SearchOptions" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing documents that match the search criteria.", - "schema": { - "$ref": "#/definitions/SearchDocumentsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.post.search": { - "post": { - "tags": [ - "Documents" - ], - "operationId": "Documents_SearchPost", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" - }, - "x-ms-examples": { - "SearchIndexSearchDocumentsPost": { - "$ref": "./examples/SearchIndexSearchDocumentsPost.json" - } - }, - "description": "Searches for documents in the index.", - "parameters": [ - { - "name": "searchRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchRequest", - "description": "The Search request." - }, - "description": "The definition of the Search request." - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing documents that match the search criteria.", - "schema": { - "$ref": "#/definitions/SearchDocumentsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs('{key}')": { - "get": { - "tags": [ - "Documents" - ], - "operationId": "Documents_Get", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/lookup-document" - }, - "x-ms-examples": { - "SearchIndexGetDocument": { - "$ref": "./examples/SearchIndexGetDocument.json" - } - }, - "description": "Retrieves a document from the index.", - "parameters": [ - { - "name": "key", - "in": "path", - "required": true, - "description": "The key of the document to retrieve.", - "type": "string" - }, - { - "name": "$select", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of field names to retrieve for the document; Any field not retrieved will be missing from the returned document.", - "x-ms-client-name": "SelectedFields" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "responses": { - "200": { - "description": "Response containing the requested document.", - "schema": { - "type": "object" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.suggest": { - "get": { - "tags": [ - "Documents" - ], - "operationId": "Documents_SuggestGet", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" - }, - "x-ms-examples": { - "SearchIndexSuggestDocumentsGet": { - "$ref": "./examples/SearchIndexSuggestDocumentsGet.json" - } - }, - "description": "Suggests documents in the index that match the given partial query text.", - "parameters": [ - { - "name": "search", - "in": "query", - "required": true, - "type": "string", - "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.", - "x-ms-client-name": "SearchText" - }, - { - "name": "suggesterName", - "in": "query", - "required": true, - "type": "string", - "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition." - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "An OData expression that filters the documents considered for suggestions.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "fuzzy", - "in": "query", - "type": "boolean", - "description": "A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.", - "x-ms-client-name": "UseFuzzyMatching", - "x-nullable": false, - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "highlightPostTag", - "in": "query", - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "highlightPreTag", - "in": "query", - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "minimumCoverage", - "in": "query", - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "$orderby", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "x-ms-client-name": "OrderBy", - "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "searchFields", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of field names to search for the specified search text. Target fields must be included in the specified suggester.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "$select", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of fields to retrieve. If unspecified, only the key field will be included in the results.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "name": "$top", - "in": "query", - "type": "integer", - "format": "int32", - "description": "The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.", - "x-ms-parameter-grouping": { - "name": "SuggestOptions" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing suggested documents that match the partial input.", - "schema": { - "$ref": "#/definitions/SuggestDocumentsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.post.suggest": { - "post": { - "tags": [ - "Documents" - ], - "operationId": "Documents_SuggestPost", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions" - }, - "x-ms-examples": { - "SearchIndexSuggestDocumentsPost": { - "$ref": "./examples/SearchIndexSuggestDocumentsPost.json" - } - }, - "description": "Suggests documents in the index that match the given partial query text.", - "parameters": [ - { - "name": "suggestRequest", - "in": "body", - "required": true, - "description": "The Suggest request.", - "schema": { - "$ref": "#/definitions/SuggestRequest" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing suggested documents that match the partial input.", - "schema": { - "$ref": "#/definitions/SuggestDocumentsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.index": { - "post": { - "tags": [ - "Documents" - ], - "operationId": "Documents_Index", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents" - }, - "x-ms-examples": { - "SearchIndexIndexDocuments": { - "$ref": "./examples/SearchIndexIndexDocuments.json" - } - }, - "description": "Sends a batch of document write actions to the index.", - "parameters": [ - { - "name": "batch", - "in": "body", - "description": "The batch of index actions.", - "required": true, - "schema": { - "$ref": "#/definitions/IndexBatch" - } - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing the status of operations for all actions in the batch.", - "schema": { - "$ref": "#/definitions/IndexDocumentsResult" - } - }, - "207": { - "description": "Response containing the status of operations for all actions in the batch.", - "schema": { - "$ref": "#/definitions/IndexDocumentsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.autocomplete": { - "get": { - "tags": [ - "Documents" - ], - "operationId": "Documents_AutocompleteGet", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" - }, - "x-ms-examples": { - "SearchIndexAutocompleteDocumentsGet": { - "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json" - } - }, - "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.", - "parameters": [ - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "search", - "in": "query", - "type": "string", - "required": true, - "description": "The incomplete term which should be auto-completed.", - "x-ms-client-name": "SearchText" - }, - { - "name": "suggesterName", - "in": "query", - "type": "string", - "required": true, - "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition." - }, - { - "name": "autocompleteMode", - "in": "query", - "type": "string", - "x-nullable": false, - "enum": [ - "oneTerm", - "twoTerms", - "oneTermWithContext" - ], - "x-ms-enum": { - "name": "AutocompleteMode", - "modelAsString": false, - "values": [ - { - "value": "oneTerm", - "name": "OneTerm", - "description": "Only one term is suggested. If the query has two terms, only the last term is completed. For example, if the input is 'washington medic', the suggested terms could include 'medicaid', 'medicare', and 'medicine'." - }, - { - "value": "twoTerms", - "name": "TwoTerms", - "description": "Matching two-term phrases in the index will be suggested. For example, if the input is 'medic', the suggested terms could include 'medicare coverage' and 'medical assistant'." - }, - { - "value": "oneTermWithContext", - "name": "OneTermWithContext", - "description": "Completes the last term in a query with two or more terms, where the last two terms are a phrase that exists in the index. For example, if the input is 'washington medic', the suggested terms could include 'washington medicaid' and 'washington medical'." - } - ] - }, - "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "$filter", - "in": "query", - "type": "string", - "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "fuzzy", - "in": "query", - "type": "boolean", - "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.", - "x-ms-client-name": "UseFuzzyMatching", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "highlightPostTag", - "in": "query", - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "highlightPreTag", - "in": "query", - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "minimumCoverage", - "in": "query", - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "searchFields", - "in": "query", - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - }, - { - "name": "$top", - "in": "query", - "type": "integer", - "format": "int32", - "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5.", - "x-ms-parameter-grouping": { - "name": "AutocompleteOptions" - } - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing suggested query terms that complete the partial input.", - "schema": { - "$ref": "#/definitions/AutocompleteResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/docs/search.post.autocomplete": { - "post": { - "tags": [ - "Documents" - ], - "operationId": "Documents_AutocompletePost", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete" - }, - "x-ms-examples": { - "SearchIndexAutocompleteDocumentsPost": { - "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json" - } - }, - "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.", - "parameters": [ - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "name": "autocompleteRequest", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AutocompleteRequest" - }, - "description": "The definition of the Autocomplete request." - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "Response containing suggested query terms that complete the partial input.", - "schema": { - "$ref": "#/definitions/AutocompleteResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - } - }, - "definitions": { - "SuggestDocumentsResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/SuggestResult" - }, - "readOnly": true, - "x-ms-client-name": "Results", - "description": "The sequence of results returned by the query." - }, - "@search.coverage": { - "type": "number", - "readOnly": true, - "format": "double", - "x-ms-client-name": "Coverage", - "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not set in the request." - } - }, - "required": [ - "value" - ], - "description": "Response containing suggestion query results from an index." - }, - "SuggestResult": { - "properties": { - "@search.text": { - "type": "string", - "readOnly": true, - "description": "The text of the suggestion result.", - "x-ms-client-name": "Text" - } - }, - "required": [ - "@search.text" - ], - "additionalProperties": true, - "description": "A result containing a document found by a suggestion query, plus associated metadata." - }, - "FacetResult": { - "properties": { - "count": { - "type": "integer", - "format": "int64", - "readOnly": true, - "description": "The approximate count of documents falling within the bucket described by this facet." - } - }, - "additionalProperties": true, - "description": "A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval." - }, - "SearchDocumentsResult": { - "properties": { - "@odata.count": { - "type": "integer", - "format": "int64", - "readOnly": true, - "x-ms-client-name": "Count", - "description": "The total count of results found by the search operation, or null if the count was not requested. If present, the count may be greater than the number of results in this response. This can happen if you use the $top or $skip parameters, or if Azure Cognitive Search can't return all the requested documents in a single Search response." - }, - "@search.coverage": { - "type": "number", - "format": "double", - "readOnly": true, - "x-ms-client-name": "Coverage", - "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not specified in the request." - }, - "@search.facets": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "$ref": "#/definitions/FacetResult" - } - }, - "readOnly": true, - "x-ms-client-name": "Facets", - "description": "The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions." - }, - "@search.nextPageParameters": { - "$ref": "#/definitions/SearchRequest", - "readOnly": true, - "x-ms-client-name": "NextPageParameters", - "description": "Continuation JSON payload returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this JSON along with @odata.nextLink to formulate another POST Search request to get the next part of the search response." - }, - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchResult" - }, - "readOnly": true, - "x-ms-client-name": "Results", - "description": "The sequence of results returned by the query." - }, - "@odata.nextLink": { - "type": "string", - "readOnly": true, - "x-ms-client-name": "NextLink", - "description": "Continuation URL returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this URL to formulate another GET or POST Search request to get the next part of the search response. Make sure to use the same verb (GET or POST) as the request that produced this response." - } - }, - "required": [ - "value" - ], - "description": "Response containing search results from an index." - }, - "SearchResult": { - "properties": { - "@search.score": { - "type": "number", - "format": "double", - "readOnly": true, - "x-ms-client-name": "Score", - "x-nullable": false, - "description": "The relevance score of the document compared to other documents returned by the query." - }, - "@search.highlights": { - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - }, - "readOnly": true, - "x-ms-client-name": "Highlights", - "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query." - } - }, - "required": [ - "@search.score" - ], - "additionalProperties": true, - "description": "Contains a document found by a search query, plus associated metadata." - }, - "IndexBatch": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/IndexAction" - }, - "description": "The actions in the batch.", - "x-ms-client-name": "Actions" - } - }, - "required": [ - "value" - ], - "description": "Contains a batch of document write actions to send to the index." - }, - "IndexAction": { - "properties": { - "@search.action": { - "type": "string", - "enum": [ - "upload", - "merge", - "mergeOrUpload", - "delete" - ], - "x-ms-enum": { - "name": "IndexActionType", - "modelAsString": false, - "values": [ - { - "value": "upload", - "name": "Upload", - "description": "Inserts the document into the index if it is new and updates it if it exists. All fields are replaced in the update case." - }, - { - "value": "merge", - "name": "Merge", - "description": "Merges the specified field values with an existing document. If the document does not exist, the merge will fail. Any field you specify in a merge will replace the existing field in the document. This also applies to collections of primitive and complex types." - }, - { - "value": "mergeOrUpload", - "name": "MergeOrUpload", - "description": "Behaves like merge if a document with the given key already exists in the index. If the document does not exist, it behaves like upload with a new document." - }, - { - "value": "delete", - "name": "Delete", - "description": "Removes the specified document from the index. Any field you specify in a delete operation other than the key field will be ignored. If you want to remove an individual field from a document, use merge instead and set the field explicitly to null." - } - ] - }, - "x-ms-client-name": "ActionType", - "x-nullable": false, - "description": "The operation to perform on a document in an indexing batch." - } - }, - "additionalProperties": true, - "description": "Represents an index action that operates on a document." - }, - "IndexingResult": { - "properties": { - "key": { - "type": "string", - "readOnly": true, - "description": "The key of a document that was in the indexing request." - }, - "errorMessage": { - "type": "string", - "readOnly": true, - "description": "The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded." - }, - "status": { - "x-ms-client-name": "Succeeded", - "type": "boolean", - "x-nullable": false, - "readOnly": true, - "description": "A value indicating whether the indexing operation succeeded for the document identified by the key." - }, - "statusCode": { - "type": "integer", - "format": "int32", - "x-nullable": false, - "readOnly": true, - "description": "The status code of the indexing operation. Possible values include: 200 for a successful update or delete, 201 for successful document creation, 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy." - } - }, - "required": [ - "key", - "status", - "statusCode" - ], - "description": "Status of an indexing operation for a single document." - }, - "IndexDocumentsResult": { - "properties": { - "value": { - "x-ms-client-name": "Results", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/IndexingResult" - }, - "description": "The list of status information for each document in the indexing request." - } - }, - "required": [ - "value" - ], - "description": "Response containing the status of operations for all documents in the indexing request." - }, - "SearchMode": { - "type": "string", - "enum": [ - "any", - "all" - ], - "x-ms-enum": { - "name": "SearchMode", - "modelAsString": false, - "values": [ - { - "value": "any", - "name": "Any", - "description": "Any of the search terms must be matched in order to count the document as a match." - }, - { - "value": "all", - "name": "All", - "description": "All of the search terms must be matched in order to count the document as a match." - } - ] - }, - "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match." - }, - "QueryType": { - "type": "string", - "enum": [ - "simple", - "full" - ], - "x-ms-enum": { - "name": "QueryType", - "modelAsString": false, - "values": [ - { - "value": "simple", - "name": "Simple", - "description": "Uses the simple query syntax for searches. Search text is interpreted using a simple query language that allows for symbols such as +, * and \"\". Queries are evaluated across all searchable fields by default, unless the searchFields parameter is specified." - }, - { - "value": "full", - "name": "Full", - "description": "Uses the full Lucene query syntax for searches. Search text is interpreted using the Lucene query language which allows field-specific and weighted searches, as well as other advanced features." - } - ] - }, - "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." - }, - "AutocompleteMode": { - "type": "string", - "enum": [ - "oneTerm", - "twoTerms", - "oneTermWithContext" - ], - "x-ms-enum": { - "name": "AutocompleteMode", - "modelAsString": false, - "values": [ - { - "value": "oneTerm", - "name": "OneTerm", - "description": "Only one term is suggested. If the query has two terms, only the last term is completed. For example, if the input is 'washington medic', the suggested terms could include 'medicaid', 'medicare', and 'medicine'." - }, - { - "value": "twoTerms", - "name": "TwoTerms", - "description": "Matching two-term phrases in the index will be suggested. For example, if the input is 'medic', the suggested terms could include 'medicare coverage' and 'medical assistant'." - }, - { - "value": "oneTermWithContext", - "name": "OneTermWithContext", - "description": "Completes the last term in a query with two or more terms, where the last two terms are a phrase that exists in the index. For example, if the input is 'washington medic', the suggested terms could include 'washington medicaid' and 'washington medical'." - } - ] - }, - "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms." - }, - "SearchRequest": { - "properties": { - "count": { - "type": "boolean", - "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.", - "x-ms-client-name": "IncludeTotalResultCount" - }, - "facets": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents" - }, - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs." - }, - "filter": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search" - }, - "type": "string", - "description": "The OData $filter expression to apply to the search query." - }, - "highlight": { - "type": "string", - "description": "The comma-separated list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.", - "x-ms-client-name": "HighlightFields" - }, - "highlightPostTag": { - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>." - }, - "highlightPreTag": { - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>." - }, - "minimumCoverage": { - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100." - }, - "orderby": { - "x-ms-client-name": "OrderBy", - "type": "string", - "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses." - }, - "queryType": { - "$ref": "#/definitions/QueryType", - "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax." - }, - "scoringParameters": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes)." - }, - "scoringProfile": { - "type": "string", - "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results." - }, - "search": { - "type": "string", - "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.", - "x-ms-client-name": "SearchText" - }, - "searchFields": { - "type": "string", - "description": "The comma-separated list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter." - }, - "searchMode": { - "$ref": "#/definitions/SearchMode", - "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match." - }, - "select": { - "type": "string", - "description": "The comma-separated list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included." - }, - "skip": { - "type": "integer", - "format": "int32", - "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use skip due to this limitation, consider using orderby on a totally-ordered key and filter with a range query instead." - }, - "top": { - "type": "integer", - "format": "int32", - "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results." - } - }, - "description": "Parameters for filtering, sorting, faceting, paging, and other search query behaviors." - }, - "SuggestRequest": { - "properties": { - "filter": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search" - }, - "type": "string", - "description": "An OData expression that filters the documents considered for suggestions." - }, - "fuzzy": { - "type": "boolean", - "description": "A value indicating whether to use fuzzy matching for the suggestion query. Default is false. When set to true, the query will find suggestions even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestion searches are slower and consume more resources.", - "x-ms-client-name": "UseFuzzyMatching" - }, - "highlightPostTag": { - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled." - }, - "highlightPreTag": { - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled." - }, - "minimumCoverage": { - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestion query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80." - }, - "orderby": { - "x-ms-client-name": "OrderBy", - "type": "string", - "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses." - }, - "search": { - "type": "string", - "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.", - "x-ms-client-name": "SearchText" - }, - "searchFields": { - "type": "string", - "description": "The comma-separated list of field names to search for the specified search text. Target fields must be included in the specified suggester." - }, - "select": { - "type": "string", - "description": "The comma-separated list of fields to retrieve. If unspecified, only the key field will be included in the results." - }, - "suggesterName": { - "type": "string", - "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition." - }, - "top": { - "type": "integer", - "format": "int32", - "description": "The number of suggestions to retrieve. This must be a value between 1 and 100. The default is 5." - } - }, - "required": [ - "search", - "suggesterName" - ], - "description": "Parameters for filtering, sorting, fuzzy matching, and other suggestions query behaviors." - }, - "AutocompleteRequest": { - "properties": { - "search": { - "type": "string", - "description": "The search text on which to base autocomplete results.", - "x-ms-client-name": "SearchText" - }, - "autocompleteMode": { - "$ref": "#/definitions/AutocompleteMode", - "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms." - }, - "filter": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search" - }, - "type": "string", - "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result." - }, - "fuzzy": { - "type": "boolean", - "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will autocomplete terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.", - "x-ms-client-name": "UseFuzzyMatching" - }, - "highlightPostTag": { - "type": "string", - "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled." - }, - "highlightPreTag": { - "type": "string", - "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled." - }, - "minimumCoverage": { - "type": "number", - "format": "double", - "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80." - }, - "searchFields": { - "type": "string", - "description": "The comma-separated list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester." - }, - "suggesterName": { - "type": "string", - "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition." - }, - "top": { - "type": "integer", - "format": "int32", - "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5." - } - }, - "required": [ - "search", - "suggesterName" - ], - "description": "Parameters for fuzzy matching, and other autocomplete query behaviors." - }, - "AutocompleteResult": { - "properties": { - "@search.coverage": { - "type": "number", - "format": "double", - "readOnly": true, - "x-ms-client-name": "Coverage", - "description": "A value indicating the percentage of the index that was considered by the autocomplete request, or null if minimumCoverage was not specified in the request." - }, - "value": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/AutocompleteItem" - }, - "description": "The list of returned Autocompleted items.", - "x-ms-client-name": "Results" - } - }, - "required": [ - "value" - ], - "description": "The result of Autocomplete query." - }, - "AutocompleteItem": { - "properties": { - "text": { - "type": "string", - "readOnly": true, - "description": "The completed term." - }, - "queryPlusText": { - "type": "string", - "readOnly": true, - "description": "The query along with the completed term." - } - }, - "required": [ - "text", - "queryPlusText" - ], - "description": "The result of Autocomplete requests." - }, - "SearchError": { - "properties": { - "code": { - "type": "string", - "readOnly": true, - "description": "One of a server-defined set of error codes." - }, - "message": { - "type": "string", - "readOnly": true, - "description": "A human-readable representation of the error." - }, - "details": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchError" - }, - "readOnly": true, - "description": "An array of details about specific errors that led to this reported error." - } - }, - "required": [ - "message" - ], - "description": "Describes an error condition for the Azure Cognitive Search API." - } - }, - "parameters": { - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - }, - "ClientRequestIdParameter": { - "name": "x-ms-client-request-id", - "in": "header", - "required": false, - "type": "string", - "format": "uuid", - "description": "The tracking ID sent with the request to help with debugging.", - "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { - "name": "request-options" - }, - "x-ms-parameter-location": "method" - }, - "EndpointParameter": { - "name": "endpoint", - "in": "path", - "required": true, - "type": "string", - "x-ms-skip-url-encoding": true, - "description": "The endpoint URL of the search service.", - "x-ms-parameter-location": "client" - }, - "IndexNameParameter": { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "x-ms-skip-url-encoding": false, - "description": "The name of the index.", - "x-ms-parameter-location": "client" - } - } -} diff --git a/sdk/search/Azure.Search.Documents/src/swagger/searchservice.json b/sdk/search/Azure.Search.Documents/src/swagger/searchservice.json deleted file mode 100644 index c2a69aac29b9..000000000000 --- a/sdk/search/Azure.Search.Documents/src/swagger/searchservice.json +++ /dev/null @@ -1,8643 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "title": "SearchServiceClient", - "description": "Client that can be used to manage and query indexes and documents, as well as manage other resources, on a search service.", - "version": "2019-05-06-Preview", - "x-ms-code-generation-settings": { - "useDateTimeOffset": true - } - }, - "x-ms-parameterized-host": { - "hostTemplate": "{endpoint}", - "useSchemePrefix": false, - "parameters": [ - { - "$ref": "#/parameters/EndpointParameter" - } - ] - }, - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/datasources('{dataSourceName}')": { - "put": { - "tags": [ - "DataSources" - ], - "operationId": "DataSources_CreateOrUpdate", - "x-ms-examples": { - "SearchServiceCreateOrUpdateDataSource": { - "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json" - } - }, - "description": "Creates a new datasource or updates a datasource if it already exists.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Data-Source" - }, - "parameters": [ - { - "name": "dataSourceName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the datasource to create or update." - }, - { - "name": "dataSource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - }, - "description": "The definition of the datasource to create or update." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/PreferHeaderParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - } - }, - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "delete": { - "tags": [ - "DataSources" - ], - "operationId": "DataSources_Delete", - "x-ms-examples": { - "SearchServiceDeleteDataSource": { - "$ref": "./examples/SearchServiceDeleteDataSource.json" - } - }, - "description": "Deletes a datasource.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Data-Source" - }, - "parameters": [ - { - "name": "dataSourceName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the datasource to delete." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "204": { - "description": "" - }, - "404": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "DataSources" - ], - "operationId": "DataSources_Get", - "x-ms-examples": { - "SearchServiceGetDataSource": { - "$ref": "./examples/SearchServiceGetDataSource.json" - } - }, - "description": "Retrieves a datasource definition.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Data-Source" - }, - "parameters": [ - { - "name": "dataSourceName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the datasource to retrieve." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/datasources": { - "get": { - "tags": [ - "DataSources" - ], - "operationId": "DataSources_List", - "x-ms-examples": { - "SearchServiceListDataSources": { - "$ref": "./examples/SearchServiceListDataSources.json" - } - }, - "description": "Lists all datasources available for a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/List-Data-Sources" - }, - "parameters": [ - { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "Selects which top-level properties of the data sources to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ListDataSourcesResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "post": { - "tags": [ - "DataSources" - ], - "operationId": "DataSources_Create", - "x-ms-examples": { - "SearchServiceCreateDataSource": { - "$ref": "./examples/SearchServiceCreateDataSource.json" - } - }, - "description": "Creates a new datasource.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source" - }, - "parameters": [ - { - "name": "dataSource", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - }, - "description": "The definition of the datasource to create." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexerDataSource" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexers('{indexerName}')/search.reset": { - "post": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_Reset", - "x-ms-examples": { - "SearchServiceResetIndexer": { - "$ref": "./examples/SearchServiceResetIndexer.json" - } - }, - "description": "Resets the change tracking state associated with an indexer.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Reset-Indexer" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer to reset." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "204": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexers('{indexerName}')/search.run": { - "post": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_Run", - "x-ms-examples": { - "SearchServiceRunIndexer": { - "$ref": "./examples/SearchServiceRunIndexer.json" - } - }, - "description": "Runs an indexer on-demand.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Run-Indexer" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer to run." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "202": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexers('{indexerName}')": { - "put": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_CreateOrUpdate", - "x-ms-examples": { - "SearchServiceCreateOrUpdateIndexer": { - "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json" - } - }, - "description": "Creates a new indexer or updates an indexer if it already exists.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer to create or update." - }, - { - "name": "indexer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexer" - }, - "description": "The definition of the indexer to create or update." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/PreferHeaderParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexer" - } - }, - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexer" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "delete": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_Delete", - "x-ms-examples": { - "SearchServiceDeleteIndexer": { - "$ref": "./examples/SearchServiceDeleteIndexer.json" - } - }, - "description": "Deletes an indexer.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Indexer" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer to delete." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "404": { - "description": "" - }, - "204": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_Get", - "x-ms-examples": { - "SearchServiceGetIndexer": { - "$ref": "./examples/SearchServiceGetIndexer.json" - } - }, - "description": "Retrieves an indexer definition.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer to retrieve." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexer" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexers": { - "get": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_List", - "x-ms-examples": { - "SearchServiceListIndexers": { - "$ref": "./examples/SearchServiceListIndexers.json" - } - }, - "description": "Lists all indexers available for a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexers" - }, - "parameters": [ - { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "Selects which top-level properties of the indexers to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ListIndexersResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "post": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_Create", - "x-ms-examples": { - "SearchServiceCreateIndexer": { - "$ref": "./examples/SearchServiceCreateIndexer.json" - } - }, - "description": "Creates a new indexer.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer" - }, - "parameters": [ - { - "name": "indexer", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexer" - }, - "description": "The definition of the indexer to create." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexer" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexers('{indexerName}')/search.status": { - "get": { - "tags": [ - "Indexers" - ], - "operationId": "Indexers_GetStatus", - "x-ms-examples": { - "SearchServiceGetIndexerStatus": { - "$ref": "./examples/SearchServiceGetIndexerStatus.json" - } - }, - "description": "Returns the current status and execution history of an indexer.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer-Status" - }, - "parameters": [ - { - "name": "indexerName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the indexer for which to retrieve status." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndexerStatus" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/skillsets('{skillsetName}')": { - "put": { - "tags": [ - "Skillsets" - ], - "operationId": "Skillsets_CreateOrUpdate", - "x-ms-examples": { - "SearchServiceCreateOrUpdateSkillset": { - "$ref": "./examples/SearchServiceCreateOrUpdateSkillset.json" - } - }, - "description": "Creates a new skillset in a search service or updates the skillset if it already exists.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/update-skillset" - }, - "parameters": [ - { - "name": "skillsetName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the skillset to create or update." - }, - { - "name": "skillset", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - }, - "description": "The skillset containing one or more skills to create or update in a search service." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/PreferHeaderParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "The skillset is successfully updated.", - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - } - }, - "201": { - "description": "The skillset is successfully created.", - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "delete": { - "tags": [ - "Skillsets" - ], - "operationId": "Skillsets_Delete", - "x-ms-examples": { - "SearchServiceDeleteSkillset": { - "$ref": "./examples/SearchServiceDeleteSkillset.json" - } - }, - "description": "Deletes a skillset in a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/delete-skillset" - }, - "parameters": [ - { - "name": "skillsetName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the skillset to delete." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "204": { - "description": "The skillset is successfully deleted." - }, - "404": { - "description": "The provided skillset name is not found." - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "Skillsets" - ], - "operationId": "Skillsets_Get", - "x-ms-examples": { - "SearchServiceGetSkillset": { - "$ref": "./examples/SearchServiceGetSkillset.json" - } - }, - "description": "Retrieves a skillset in a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/get-skillset" - }, - "parameters": [ - { - "name": "skillsetName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the skillset to retrieve." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "The skillset is successfully returned.", - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/skillsets": { - "get": { - "tags": [ - "Skillsets" - ], - "operationId": "Skillsets_List", - "x-ms-examples": { - "SearchServiceListSkillsets": { - "$ref": "./examples/SearchServiceListSkillsets.json" - } - }, - "description": "List all skillsets in a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/list-skillset" - }, - "parameters": [ - { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "Selects which top-level properties of the skillsets to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "The list is successfully returned.", - "schema": { - "$ref": "#/definitions/ListSkillsetsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "post": { - "tags": [ - "Skillsets" - ], - "operationId": "Skillsets_Create", - "x-ms-examples": { - "SearchServiceCreateSkillset": { - "$ref": "./examples/SearchServiceCreateSkillset.json" - } - }, - "description": "Creates a new skillset in a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/create-skillset" - }, - "parameters": [ - { - "name": "skillset", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - }, - "description": "The skillset containing one or more skills to create in a search service." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "The skillset is successfully created.", - "schema": { - "$ref": "#/definitions/SearchIndexerSkillset" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/synonymmaps('{synonymMapName}')": { - "put": { - "tags": [ - "SynonymMaps" - ], - "operationId": "SynonymMaps_CreateOrUpdate", - "x-ms-examples": { - "SearchServiceCreateOrUpdateSynonymMap": { - "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json" - } - }, - "description": "Creates a new synonym map or updates a synonym map if it already exists.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Synonym-Map" - }, - "parameters": [ - { - "name": "synonymMapName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the synonym map to create or update." - }, - { - "name": "synonymMap", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SynonymMap" - }, - "description": "The definition of the synonym map to create or update." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/PreferHeaderParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SynonymMap" - } - }, - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SynonymMap" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "delete": { - "tags": [ - "SynonymMaps" - ], - "operationId": "SynonymMaps_Delete", - "x-ms-examples": { - "SearchServiceDeleteSynonymMap": { - "$ref": "./examples/SearchServiceDeleteSynonymMap.json" - } - }, - "description": "Deletes a synonym map.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Synonym-Map" - }, - "parameters": [ - { - "name": "synonymMapName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the synonym map to delete." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "204": { - "description": "" - }, - "404": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "SynonymMaps" - ], - "operationId": "SynonymMaps_Get", - "x-ms-examples": { - "SearchServiceGetSynonymMap": { - "$ref": "./examples/SearchServiceGetSynonymMap.json" - } - }, - "description": "Retrieves a synonym map definition.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Synonym-Map" - }, - "parameters": [ - { - "name": "synonymMapName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the synonym map to retrieve." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SynonymMap" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/synonymmaps": { - "get": { - "tags": [ - "SynonymMaps" - ], - "operationId": "SynonymMaps_List", - "x-ms-examples": { - "SearchServiceListSynonymMaps": { - "$ref": "./examples/SearchServiceListSynonymMaps.json" - } - }, - "description": "Lists all synonym maps available for a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/List-Synonym-Maps" - }, - "parameters": [ - { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "Selects which top-level properties of the synonym maps to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ListSynonymMapsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "post": { - "tags": [ - "SynonymMaps" - ], - "operationId": "SynonymMaps_Create", - "x-ms-examples": { - "SearchServiceCreateSynonymMap": { - "$ref": "./examples/SearchServiceCreateSynonymMap.json" - } - }, - "description": "Creates a new synonym map.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map" - }, - "parameters": [ - { - "name": "synonymMap", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SynonymMap" - }, - "description": "The definition of the synonym map to create." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SynonymMap" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexes": { - "post": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_Create", - "x-ms-examples": { - "SearchServiceCreateIndex": { - "$ref": "./examples/SearchServiceCreateIndex.json" - } - }, - "description": "Creates a new search index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" - }, - "parameters": [ - { - "name": "index", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndex" - }, - "description": "The definition of the index to create." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndex" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_List", - "x-ms-examples": { - "SearchServiceListIndexes": { - "$ref": "./examples/SearchServiceListIndexes.json" - } - }, - "description": "Lists all indexes available for a search service.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexes" - }, - "parameters": [ - { - "name": "$select", - "in": "query", - "required": false, - "type": "string", - "description": "Selects which top-level properties of the index definitions to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ListIndexesResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - }, - "x-ms-pageable": { - "nextLinkName": null - } - } - }, - "/indexes('{indexName}')": { - "put": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_CreateOrUpdate", - "x-ms-examples": { - "SearchServiceCreateOrUpdateIndex": { - "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json" - } - }, - "description": "Creates a new search index or updates an index if it already exists.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Index" - }, - "parameters": [ - { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "description": "The definition of the index to create or update." - }, - { - "name": "index", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/SearchIndex" - }, - "description": "The definition of the index to create or update." - }, - { - "name": "allowIndexDowntime", - "in": "query", - "required": false, - "type": "boolean", - "description": "Allows new analyzers, tokenizers, token filters, or char filters to be added to an index by taking the index offline for at least a few seconds. This temporarily causes indexing and query requests to fail. Performance and write availability of the index can be impaired for several minutes after the index is updated, or longer for very large indexes." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/PreferHeaderParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndex" - } - }, - "201": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndex" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "delete": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_Delete", - "x-ms-examples": { - "SearchServiceDeleteIndex": { - "$ref": "./examples/SearchServiceDeleteIndex.json" - } - }, - "description": "Deletes a search index and all the documents it contains. This operation is permanent, with no recovery option. Make sure you have a master copy of your index definition, data ingestion code, and a backup of the primary data source in case you need to re-build the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Index" - }, - "parameters": [ - { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the index to delete." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/IfMatchParameter" - }, - { - "$ref": "#/parameters/IfNoneMatchParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "204": { - "description": "" - }, - "404": { - "description": "" - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - }, - "get": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_Get", - "x-ms-examples": { - "SearchServiceGetIndex": { - "$ref": "./examples/SearchServiceGetIndex.json" - } - }, - "description": "Retrieves an index definition.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index" - }, - "parameters": [ - { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the index to retrieve." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/SearchIndex" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexes('{indexName}')/search.stats": { - "get": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_GetStatistics", - "x-ms-examples": { - "SearchServiceGetIndexStatistics": { - "$ref": "./examples/SearchServiceGetIndexStatistics.json" - } - }, - "description": "Returns statistics for the given index, including a document count and storage usage.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index-Statistics" - }, - "parameters": [ - { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the index for which to retrieve statistics." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/GetIndexStatisticsResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/indexes('{indexName}')/search.analyze": { - "post": { - "tags": [ - "Indexes" - ], - "operationId": "Indexes_Analyze", - "x-ms-examples": { - "SearchServiceIndexAnalyze": { - "$ref": "./examples/SearchServiceIndexAnalyze.json" - } - }, - "description": "Shows how an analyzer breaks text into tokens.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/test-analyzer" - }, - "parameters": [ - { - "name": "indexName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the index for which to test an analyzer." - }, - { - "name": "request", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/AnalyzeRequest" - }, - "description": "The text and analyzer or analysis components to test." - }, - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/AnalyzeResult" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - }, - "/servicestats": { - "get": { - "tags": [ - "Service" - ], - "operationId": "GetServiceStatistics", - "x-ms-examples": { - "SearchServiceGetServiceStatistics": { - "$ref": "./examples/SearchServiceGetServiceStatistics.json" - } - }, - "description": "Gets service level statistics for a search service.", - "parameters": [ - { - "$ref": "#/parameters/ClientRequestIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "x-ms-request-id": "request-id", - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/ServiceStatistics" - } - }, - "default": { - "description": "Error response.", - "schema": { - "$ref": "#/definitions/SearchError" - } - } - } - } - } - }, - "definitions": { - "AnalyzeRequest": { - "properties": { - "text": { - "type": "string", - "description": "The text to break into tokens." - }, - "analyzer": { - "$ref": "#/definitions/LexicalAnalyzerName", - "description": "The name of the analyzer to use to break the given text. If this parameter is not specified, you must specify a tokenizer instead. The tokenizer and analyzer parameters are mutually exclusive." - }, - "tokenizer": { - "$ref": "#/definitions/LexicalTokenizerName", - "description": "The name of the tokenizer to use to break the given text. If this parameter is not specified, you must specify an analyzer instead. The tokenizer and analyzer parameters are mutually exclusive." - }, - "tokenFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenFilterName", - "x-nullable": false - }, - "description": "An optional list of token filters to use when breaking the given text. This parameter can only be set when using the tokenizer parameter." - }, - "charFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/CharFilterName", - "x-nullable": false - }, - "description": "An optional list of character filters to use when breaking the given text. This parameter can only be set when using the tokenizer parameter." - } - }, - "required": [ - "text" - ], - "description": "Specifies some text and analysis components used to break that text into tokens." - }, - "AnalyzeResult": { - "properties": { - "tokens": { - "type": "array", - "items": { - "$ref": "#/definitions/AnalyzedTokenInfo" - }, - "description": "The list of tokens returned by the analyzer specified in the request." - } - }, - "required": [ - "tokens" - ], - "description": "The result of testing an analyzer on text." - }, - "AnalyzedTokenInfo": { - "properties": { - "token": { - "type": "string", - "readOnly": true, - "description": "The token returned by the analyzer." - }, - "startOffset": { - "type": "integer", - "format": "int32", - "readOnly": true, - "x-nullable": false, - "description": "The index of the first character of the token in the input text." - }, - "endOffset": { - "type": "integer", - "format": "int32", - "readOnly": true, - "x-nullable": false, - "description": "The index of the last character of the token in the input text." - }, - "position": { - "type": "integer", - "format": "int32", - "readOnly": true, - "x-nullable": false, - "description": "The position of the token in the input text relative to other tokens. The first token in the input text has position 0, the next has position 1, and so on. Depending on the analyzer used, some tokens might have the same position, for example if they are synonyms of each other." - } - }, - "required": [ - "token", - "startOffset", - "endOffset", - "position" - ], - "description": "Information about a token returned by an analyzer." - }, - "LexicalAnalyzerName": { - "type": "string", - "enum": [ - "ar.microsoft", - "ar.lucene", - "hy.lucene", - "bn.microsoft", - "eu.lucene", - "bg.microsoft", - "bg.lucene", - "ca.microsoft", - "ca.lucene", - "zh-Hans.microsoft", - "zh-Hans.lucene", - "zh-Hant.microsoft", - "zh-Hant.lucene", - "hr.microsoft", - "cs.microsoft", - "cs.lucene", - "da.microsoft", - "da.lucene", - "nl.microsoft", - "nl.lucene", - "en.microsoft", - "en.lucene", - "et.microsoft", - "fi.microsoft", - "fi.lucene", - "fr.microsoft", - "fr.lucene", - "gl.lucene", - "de.microsoft", - "de.lucene", - "el.microsoft", - "el.lucene", - "gu.microsoft", - "he.microsoft", - "hi.microsoft", - "hi.lucene", - "hu.microsoft", - "hu.lucene", - "is.microsoft", - "id.microsoft", - "id.lucene", - "ga.lucene", - "it.microsoft", - "it.lucene", - "ja.microsoft", - "ja.lucene", - "kn.microsoft", - "ko.microsoft", - "ko.lucene", - "lv.microsoft", - "lv.lucene", - "lt.microsoft", - "ml.microsoft", - "ms.microsoft", - "mr.microsoft", - "nb.microsoft", - "no.lucene", - "fa.lucene", - "pl.microsoft", - "pl.lucene", - "pt-BR.microsoft", - "pt-BR.lucene", - "pt-PT.microsoft", - "pt-PT.lucene", - "pa.microsoft", - "ro.microsoft", - "ro.lucene", - "ru.microsoft", - "ru.lucene", - "sr-cyrillic.microsoft", - "sr-latin.microsoft", - "sk.microsoft", - "sl.microsoft", - "es.microsoft", - "es.lucene", - "sv.microsoft", - "sv.lucene", - "ta.microsoft", - "te.microsoft", - "th.microsoft", - "th.lucene", - "tr.microsoft", - "tr.lucene", - "uk.microsoft", - "ur.microsoft", - "vi.microsoft", - "standard.lucene", - "standardasciifolding.lucene", - "keyword", - "pattern", - "simple", - "stop", - "whitespace" - ], - "x-ms-enum": { - "name": "LexicalAnalyzerName", - "modelAsString": true, - "values": [ - { - "value": "ar.microsoft", - "name": "ArMicrosoft", - "description": "Microsoft analyzer for Arabic." - }, - { - "value": "ar.lucene", - "name": "ArLucene", - "description": "Lucene analyzer for Arabic." - }, - { - "value": "hy.lucene", - "name": "HyLucene", - "description": "Lucene analyzer for Armenian." - }, - { - "value": "bn.microsoft", - "name": "BnMicrosoft", - "description": "Microsoft analyzer for Bangla." - }, - { - "value": "eu.lucene", - "name": "EuLucene", - "description": "Lucene analyzer for Basque." - }, - { - "value": "bg.microsoft", - "name": "BgMicrosoft", - "description": "Microsoft analyzer for Bulgarian." - }, - { - "value": "bg.lucene", - "name": "BgLucene", - "description": "Lucene analyzer for Bulgarian." - }, - { - "value": "ca.microsoft", - "name": "CaMicrosoft", - "description": "Microsoft analyzer for Catalan." - }, - { - "value": "ca.lucene", - "name": "CaLucene", - "description": "Lucene analyzer for Catalan." - }, - { - "value": "zh-Hans.microsoft", - "name": "ZhHansMicrosoft", - "description": "Microsoft analyzer for Chinese (Simplified)." - }, - { - "value": "zh-Hans.lucene", - "name": "ZhHansLucene", - "description": "Lucene analyzer for Chinese (Simplified)." - }, - { - "value": "zh-Hant.microsoft", - "name": "ZhHantMicrosoft", - "description": "Microsoft analyzer for Chinese (Traditional)." - }, - { - "value": "zh-Hant.lucene", - "name": "ZhHantLucene", - "description": "Lucene analyzer for Chinese (Traditional)." - }, - { - "value": "hr.microsoft", - "name": "HrMicrosoft", - "description": "Microsoft analyzer for Croatian." - }, - { - "value": "cs.microsoft", - "name": "CsMicrosoft", - "description": "Microsoft analyzer for Czech." - }, - { - "value": "cs.lucene", - "name": "CsLucene", - "description": "Lucene analyzer for Czech." - }, - { - "value": "da.microsoft", - "name": "DaMicrosoft", - "description": "Microsoft analyzer for Danish." - }, - { - "value": "da.lucene", - "name": "DaLucene", - "description": "Lucene analyzer for Danish." - }, - { - "value": "nl.microsoft", - "name": "NlMicrosoft", - "description": "Microsoft analyzer for Dutch." - }, - { - "value": "nl.lucene", - "name": "NlLucene", - "description": "Lucene analyzer for Dutch." - }, - { - "value": "en.microsoft", - "name": "EnMicrosoft", - "description": "Microsoft analyzer for English." - }, - { - "value": "en.lucene", - "name": "EnLucene", - "description": "Lucene analyzer for English." - }, - { - "value": "et.microsoft", - "name": "EtMicrosoft", - "description": "Microsoft analyzer for Estonian." - }, - { - "value": "fi.microsoft", - "name": "FiMicrosoft", - "description": "Microsoft analyzer for Finnish." - }, - { - "value": "fi.lucene", - "name": "FiLucene", - "description": "Lucene analyzer for Finnish." - }, - { - "value": "fr.microsoft", - "name": "FrMicrosoft", - "description": "Microsoft analyzer for French." - }, - { - "value": "fr.lucene", - "name": "FrLucene", - "description": "Lucene analyzer for French." - }, - { - "value": "gl.lucene", - "name": "GlLucene", - "description": "Lucene analyzer for Galician." - }, - { - "value": "de.microsoft", - "name": "DeMicrosoft", - "description": "Microsoft analyzer for German." - }, - { - "value": "de.lucene", - "name": "DeLucene", - "description": "Lucene analyzer for German." - }, - { - "value": "el.microsoft", - "name": "ElMicrosoft", - "description": "Microsoft analyzer for Greek." - }, - { - "value": "el.lucene", - "name": "ElLucene", - "description": "Lucene analyzer for Greek." - }, - { - "value": "gu.microsoft", - "name": "GuMicrosoft", - "description": "Microsoft analyzer for Gujarati." - }, - { - "value": "he.microsoft", - "name": "HeMicrosoft", - "description": "Microsoft analyzer for Hebrew." - }, - { - "value": "hi.microsoft", - "name": "HiMicrosoft", - "description": "Microsoft analyzer for Hindi." - }, - { - "value": "hi.lucene", - "name": "HiLucene", - "description": "Lucene analyzer for Hindi." - }, - { - "value": "hu.microsoft", - "name": "HuMicrosoft", - "description": "Microsoft analyzer for Hungarian." - }, - { - "value": "hu.lucene", - "name": "HuLucene", - "description": "Lucene analyzer for Hungarian." - }, - { - "value": "is.microsoft", - "name": "IsMicrosoft", - "description": "Microsoft analyzer for Icelandic." - }, - { - "value": "id.microsoft", - "name": "IdMicrosoft", - "description": "Microsoft analyzer for Indonesian (Bahasa)." - }, - { - "value": "id.lucene", - "name": "IdLucene", - "description": "Lucene analyzer for Indonesian." - }, - { - "value": "ga.lucene", - "name": "GaLucene", - "description": "Lucene analyzer for Irish." - }, - { - "value": "it.microsoft", - "name": "ItMicrosoft", - "description": "Microsoft analyzer for Italian." - }, - { - "value": "it.lucene", - "name": "ItLucene", - "description": "Lucene analyzer for Italian." - }, - { - "value": "ja.microsoft", - "name": "JaMicrosoft", - "description": "Microsoft analyzer for Japanese." - }, - { - "value": "ja.lucene", - "name": "JaLucene", - "description": "Lucene analyzer for Japanese." - }, - { - "value": "kn.microsoft", - "name": "KnMicrosoft", - "description": "Microsoft analyzer for Kannada." - }, - { - "value": "ko.microsoft", - "name": "KoMicrosoft", - "description": "Microsoft analyzer for Korean." - }, - { - "value": "ko.lucene", - "name": "KoLucene", - "description": "Lucene analyzer for Korean." - }, - { - "value": "lv.microsoft", - "name": "LvMicrosoft", - "description": "Microsoft analyzer for Latvian." - }, - { - "value": "lv.lucene", - "name": "LvLucene", - "description": "Lucene analyzer for Latvian." - }, - { - "value": "lt.microsoft", - "name": "LtMicrosoft", - "description": "Microsoft analyzer for Lithuanian." - }, - { - "value": "ml.microsoft", - "name": "MlMicrosoft", - "description": "Microsoft analyzer for Malayalam." - }, - { - "value": "ms.microsoft", - "name": "MsMicrosoft", - "description": "Microsoft analyzer for Malay (Latin)." - }, - { - "value": "mr.microsoft", - "name": "MrMicrosoft", - "description": "Microsoft analyzer for Marathi." - }, - { - "value": "nb.microsoft", - "name": "NbMicrosoft", - "description": "Microsoft analyzer for Norwegian (Bokmål)." - }, - { - "value": "no.lucene", - "name": "NoLucene", - "description": "Lucene analyzer for Norwegian." - }, - { - "value": "fa.lucene", - "name": "FaLucene", - "description": "Lucene analyzer for Persian." - }, - { - "value": "pl.microsoft", - "name": "PlMicrosoft", - "description": "Microsoft analyzer for Polish." - }, - { - "value": "pl.lucene", - "name": "PlLucene", - "description": "Lucene analyzer for Polish." - }, - { - "value": "pt-BR.microsoft", - "name": "PtBrMicrosoft", - "description": "Microsoft analyzer for Portuguese (Brazil)." - }, - { - "value": "pt-BR.lucene", - "name": "PtBrLucene", - "description": "Lucene analyzer for Portuguese (Brazil)." - }, - { - "value": "pt-PT.microsoft", - "name": "PtPtMicrosoft", - "description": "Microsoft analyzer for Portuguese (Portugal)." - }, - { - "value": "pt-PT.lucene", - "name": "PtPtLucene", - "description": "Lucene analyzer for Portuguese (Portugal)." - }, - { - "value": "pa.microsoft", - "name": "PaMicrosoft", - "description": "Microsoft analyzer for Punjabi." - }, - { - "value": "ro.microsoft", - "name": "RoMicrosoft", - "description": "Microsoft analyzer for Romanian." - }, - { - "value": "ro.lucene", - "name": "RoLucene", - "description": "Lucene analyzer for Romanian." - }, - { - "value": "ru.microsoft", - "name": "RuMicrosoft", - "description": "Microsoft analyzer for Russian." - }, - { - "value": "ru.lucene", - "name": "RuLucene", - "description": "Lucene analyzer for Russian." - }, - { - "value": "sr-cyrillic.microsoft", - "name": "SrCyrillicMicrosoft", - "description": "Microsoft analyzer for Serbian (Cyrillic)." - }, - { - "value": "sr-latin.microsoft", - "name": "SrLatinMicrosoft", - "description": "Microsoft analyzer for Serbian (Latin)." - }, - { - "value": "sk.microsoft", - "name": "SkMicrosoft", - "description": "Microsoft analyzer for Slovak." - }, - { - "value": "sl.microsoft", - "name": "SlMicrosoft", - "description": "Microsoft analyzer for Slovenian." - }, - { - "value": "es.microsoft", - "name": "EsMicrosoft", - "description": "Microsoft analyzer for Spanish." - }, - { - "value": "es.lucene", - "name": "EsLucene", - "description": "Lucene analyzer for Spanish." - }, - { - "value": "sv.microsoft", - "name": "SvMicrosoft", - "description": "Microsoft analyzer for Swedish." - }, - { - "value": "sv.lucene", - "name": "SvLucene", - "description": "Lucene analyzer for Swedish." - }, - { - "value": "ta.microsoft", - "name": "TaMicrosoft", - "description": "Microsoft analyzer for Tamil." - }, - { - "value": "te.microsoft", - "name": "TeMicrosoft", - "description": "Microsoft analyzer for Telugu." - }, - { - "value": "th.microsoft", - "name": "ThMicrosoft", - "description": "Microsoft analyzer for Thai." - }, - { - "value": "th.lucene", - "name": "ThLucene", - "description": "Lucene analyzer for Thai." - }, - { - "value": "tr.microsoft", - "name": "TrMicrosoft", - "description": "Microsoft analyzer for Turkish." - }, - { - "value": "tr.lucene", - "name": "TrLucene", - "description": "Lucene analyzer for Turkish." - }, - { - "value": "uk.microsoft", - "name": "UkMicrosoft", - "description": "Microsoft analyzer for Ukrainian." - }, - { - "value": "ur.microsoft", - "name": "UrMicrosoft", - "description": "Microsoft analyzer for Urdu." - }, - { - "value": "vi.microsoft", - "name": "ViMicrosoft", - "description": "Microsoft analyzer for Vietnamese." - }, - { - "value": "standard.lucene", - "name": "StandardLucene", - "description": "Standard Lucene analyzer." - }, - { - "value": "standardasciifolding.lucene", - "name": "StandardAsciiFoldingLucene", - "description": "Standard ASCII Folding Lucene analyzer. See https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#Analyzers" - }, - { - "value": "keyword", - "name": "Keyword", - "description": "Treats the entire content of a field as a single token. This is useful for data like zip codes, ids, and some product names. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordAnalyzer.html" - }, - { - "value": "pattern", - "name": "Pattern", - "description": "Flexibly separates text into terms via a regular expression pattern. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html" - }, - { - "value": "simple", - "name": "Simple", - "description": "Divides text at non-letters and converts them to lower case. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/SimpleAnalyzer.html" - }, - { - "value": "stop", - "name": "Stop", - "description": "Divides text at non-letters; Applies the lowercase and stopword token filters. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html" - }, - { - "value": "whitespace", - "name": "Whitespace", - "description": "An analyzer that uses the whitespace tokenizer. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/WhitespaceAnalyzer.html" - } - ] - }, - "description": "Defines the names of all text analyzers supported by Azure Cognitive Search.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support" - } - }, - "LexicalTokenizerName": { - "type": "string", - "enum": [ - "classic", - "edgeNGram", - "keyword_v2", - "letter", - "lowercase", - "microsoft_language_tokenizer", - "microsoft_language_stemming_tokenizer", - "nGram", - "path_hierarchy_v2", - "pattern", - "standard_v2", - "uax_url_email", - "whitespace" - ], - "x-ms-enum": { - "name": "LexicalTokenizerName", - "modelAsString": true, - "values": [ - { - "value": "classic", - "name": "Classic", - "description": "Grammar-based tokenizer that is suitable for processing most European-language documents. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicTokenizer.html" - }, - { - "value": "edgeNGram", - "name": "EdgeNGram", - "description": "Tokenizes the input from an edge into n-grams of the given size(s). See https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenizer.html" - }, - { - "value": "keyword_v2", - "name": "Keyword", - "description": "Emits the entire input as a single token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html" - }, - { - "value": "letter", - "name": "Letter", - "description": "Divides text at non-letters. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/LetterTokenizer.html" - }, - { - "value": "lowercase", - "name": "Lowercase", - "description": "Divides text at non-letters and converts them to lower case. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/LowerCaseTokenizer.html" - }, - { - "value": "microsoft_language_tokenizer", - "name": "MicrosoftLanguageTokenizer", - "description": "Divides text using language-specific rules." - }, - { - "value": "microsoft_language_stemming_tokenizer", - "name": "MicrosoftLanguageStemmingTokenizer", - "description": "Divides text using language-specific rules and reduces words to their base forms." - }, - { - "value": "nGram", - "name": "NGram", - "description": "Tokenizes the input into n-grams of the given size(s). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenizer.html" - }, - { - "value": "path_hierarchy_v2", - "name": "PathHierarchy", - "description": "Tokenizer for path-like hierarchies. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html" - }, - { - "value": "pattern", - "name": "Pattern", - "description": "Tokenizer that uses regex pattern matching to construct distinct tokens. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternTokenizer.html" - }, - { - "value": "standard_v2", - "name": "Standard", - "description": "Standard Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html" - }, - { - "value": "uax_url_email", - "name": "UaxUrlEmail", - "description": "Tokenizes urls and emails as one token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/UAX29URLEmailTokenizer.html" - }, - { - "value": "whitespace", - "name": "Whitespace", - "description": "Divides text at whitespace. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/WhitespaceTokenizer.html" - } - ] - }, - "description": "Defines the names of all tokenizers supported by Azure Cognitive Search.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "TokenFilterName": { - "type": "string", - "enum": [ - "arabic_normalization", - "apostrophe", - "asciifolding", - "cjk_bigram", - "cjk_width", - "classic", - "common_grams", - "edgeNGram_v2", - "elision", - "german_normalization", - "hindi_normalization", - "indic_normalization", - "keyword_repeat", - "kstem", - "length", - "limit", - "lowercase", - "nGram_v2", - "persian_normalization", - "phonetic", - "porter_stem", - "reverse", - "scandinavian_normalization", - "scandinavian_folding", - "shingle", - "snowball", - "sorani_normalization", - "stemmer", - "stopwords", - "trim", - "truncate", - "unique", - "uppercase", - "word_delimiter" - ], - "x-ms-enum": { - "name": "TokenFilterName", - "modelAsString": true, - "values": [ - { - "value": "arabic_normalization", - "name": "ArabicNormalization", - "description": "A token filter that applies the Arabic normalizer to normalize the orthography. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ar/ArabicNormalizationFilter.html" - }, - { - "value": "apostrophe", - "name": "Apostrophe", - "description": "Strips all characters after an apostrophe (including the apostrophe itself). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/tr/ApostropheFilter.html" - }, - { - "value": "asciifolding", - "name": "AsciiFolding", - "description": "Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode block) into their ASCII equivalents, if such equivalents exist. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html" - }, - { - "value": "cjk_bigram", - "name": "CjkBigram", - "description": "Forms bigrams of CJK terms that are generated from the standard tokenizer. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html" - }, - { - "value": "cjk_width", - "name": "CjkWidth", - "description": "Normalizes CJK width differences. Folds fullwidth ASCII variants into the equivalent basic Latin, and half-width Katakana variants into the equivalent Kana. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKWidthFilter.html" - }, - { - "value": "classic", - "name": "Classic", - "description": "Removes English possessives, and dots from acronyms. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicFilter.html" - }, - { - "value": "common_grams", - "name": "CommonGram", - "description": "Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/commongrams/CommonGramsFilter.html" - }, - { - "value": "edgeNGram_v2", - "name": "EdgeNGram", - "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html" - }, - { - "value": "elision", - "name": "Elision", - "description": "Removes elisions. For example, \"l'avion\" (the plane) will be converted to \"avion\" (plane). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html" - }, - { - "value": "german_normalization", - "name": "GermanNormalization", - "description": "Normalizes German characters according to the heuristics of the German2 snowball algorithm. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/de/GermanNormalizationFilter.html" - }, - { - "value": "hindi_normalization", - "name": "HindiNormalization", - "description": "Normalizes text in Hindi to remove some differences in spelling variations. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/hi/HindiNormalizationFilter.html" - }, - { - "value": "indic_normalization", - "name": "IndicNormalization", - "description": "Normalizes the Unicode representation of text in Indian languages. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/in/IndicNormalizationFilter.html" - }, - { - "value": "keyword_repeat", - "name": "KeywordRepeat", - "description": "Emits each incoming token twice, once as keyword and once as non-keyword. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordRepeatFilter.html" - }, - { - "value": "kstem", - "name": "KStem", - "description": "A high-performance kstem filter for English. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/en/KStemFilter.html" - }, - { - "value": "length", - "name": "Length", - "description": "Removes words that are too long or too short. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilter.html" - }, - { - "value": "limit", - "name": "Limit", - "description": "Limits the number of tokens while indexing. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html" - }, - { - "value": "lowercase", - "name": "Lowercase", - "description": "Normalizes token text to lower case. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/LowerCaseFilter.htm" - }, - { - "value": "nGram_v2", - "name": "NGram", - "description": "Generates n-grams of the given size(s). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html" - }, - { - "value": "persian_normalization", - "name": "PersianNormalization", - "description": "Applies normalization for Persian. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/fa/PersianNormalizationFilter.html" - }, - { - "value": "phonetic", - "name": "Phonetic", - "description": "Create tokens for phonetic matches. See https://lucene.apache.org/core/4_10_3/analyzers-phonetic/org/apache/lucene/analysis/phonetic/package-tree.html" - }, - { - "value": "porter_stem", - "name": "PorterStem", - "description": "Uses the Porter stemming algorithm to transform the token stream. See http://tartarus.org/~martin/PorterStemmer" - }, - { - "value": "reverse", - "name": "Reverse", - "description": "Reverses the token string. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/reverse/ReverseStringFilter.html" - }, - { - "value": "scandinavian_normalization", - "name": "ScandinavianNormalization", - "description": "Normalizes use of the interchangeable Scandinavian characters. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ScandinavianNormalizationFilter.html" - }, - { - "value": "scandinavian_folding", - "name": "ScandinavianFoldingNormalization", - "description": "Folds Scandinavian characters åÅäæÄÆ->a and öÖøØ->o. It also discriminates against use of double vowels aa, ae, ao, oe and oo, leaving just the first one. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ScandinavianFoldingFilter.html" - }, - { - "value": "shingle", - "name": "Shingle", - "description": "Creates combinations of tokens as a single token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html" - }, - { - "value": "snowball", - "name": "Snowball", - "description": "A filter that stems words using a Snowball-generated stemmer. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.html" - }, - { - "value": "sorani_normalization", - "name": "SoraniNormalization", - "description": "Normalizes the Unicode representation of Sorani text. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ckb/SoraniNormalizationFilter.html" - }, - { - "value": "stemmer", - "name": "Stemmer", - "description": "Language specific stemming filter. See https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#TokenFilters" - }, - { - "value": "stopwords", - "name": "Stopwords", - "description": "Removes stop words from a token stream. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html" - }, - { - "value": "trim", - "name": "Trim", - "description": "Trims leading and trailing whitespace from tokens. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TrimFilter.html" - }, - { - "value": "truncate", - "name": "Truncate", - "description": "Truncates the terms to a specific length. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TruncateTokenFilter.html" - }, - { - "value": "unique", - "name": "Unique", - "description": "Filters out tokens with same text as the previous token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html" - }, - { - "value": "uppercase", - "name": "Uppercase", - "description": "Normalizes token text to upper case. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html" - }, - { - "value": "word_delimiter", - "name": "WordDelimiter", - "description": "Splits words into subwords and performs optional transformations on subword groups." - } - ] - }, - "description": "Defines the names of all token filters supported by Azure Cognitive Search.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "CharFilterName": { - "type": "string", - "enum": [ - "html_strip" - ], - "x-ms-enum": { - "name": "CharFilterName", - "modelAsString": true, - "values": [ - { - "value": "html_strip", - "name": "HtmlStrip", - "description": "A character filter that attempts to strip out HTML constructs. See https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/HTMLStripCharFilter.html" - } - ] - }, - "description": "Defines the names of all character filters supported by Azure Cognitive Search.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "RegexFlags": { - "type": "string", - "enum": [ - "CANON_EQ", - "CASE_INSENSITIVE", - "COMMENTS", - "DOTALL", - "LITERAL", - "MULTILINE", - "UNICODE_CASE", - "UNIX_LINES" - ], - "x-ms-enum": { - "name": "RegexFlags", - "modelAsString": true, - "values": [ - { - "value": "CANON_EQ", - "name": "CanonEq", - "description": "Enables canonical equivalence." - }, - { - "value": "CASE_INSENSITIVE", - "name": "CaseInsensitive", - "description": "Enables case-insensitive matching." - }, - { - "value": "COMMENTS", - "name": "Comments", - "description": "Permits whitespace and comments in the pattern." - }, - { - "value": "DOTALL", - "name": "DotAll", - "description": "Enables dotall mode." - }, - { - "value": "LITERAL", - "name": "Literal", - "description": "Enables literal parsing of the pattern." - }, - { - "value": "MULTILINE", - "name": "Multiline", - "description": "Enables multiline mode." - }, - { - "value": "UNICODE_CASE", - "name": "UnicodeCase", - "description": "Enables Unicode-aware case folding." - }, - { - "value": "UNIX_LINES", - "name": "UnixLines", - "description": "Enables Unix lines mode." - } - ] - }, - "description": "Defines flags that can be combined to control how regular expressions are used in the pattern analyzer and pattern tokenizer.", - "externalDocs": { - "url": "http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html#field_summary" - } - }, - "SearchFieldDataType": { - "type": "string", - "enum": [ - "Edm.String", - "Edm.Int32", - "Edm.Int64", - "Edm.Double", - "Edm.Boolean", - "Edm.DateTimeOffset", - "Edm.GeographyPoint", - "Edm.ComplexType" - ], - "x-ms-enum": { - "name": "SearchFieldDataType", - "modelAsString": true, - "values": [ - { - "value": "Edm.String", - "name": "String", - "description": "Indicates that a field contains a string." - }, - { - "value": "Edm.Int32", - "name": "Int32", - "description": "Indicates that a field contains a 32-bit signed integer." - }, - { - "value": "Edm.Int64", - "name": "Int64", - "description": "Indicates that a field contains a 64-bit signed integer." - }, - { - "value": "Edm.Double", - "name": "Double", - "description": "Indicates that a field contains an IEEE double-precision floating point number." - }, - { - "value": "Edm.Boolean", - "name": "Boolean", - "description": "Indicates that a field contains a Boolean value (true or false)." - }, - { - "value": "Edm.DateTimeOffset", - "name": "DateTimeOffset", - "description": "Indicates that a field contains a date/time value, including timezone information." - }, - { - "value": "Edm.GeographyPoint", - "name": "GeographyPoint", - "description": "Indicates that a field contains a geo-location in terms of longitude and latitude." - }, - { - "value": "Edm.ComplexType", - "name": "Complex", - "description": "Indicates that a field contains one or more complex objects that in turn have sub-fields of other types." - } - ] - }, - "description": "Defines the data type of a field in a search index." - }, - "LexicalAnalyzer": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the analyzer." - }, - "name": { - "type": "string", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" - }, - "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." - } - }, - "required": [ - "@odata.type", - "name" - ], - "description": "Base type for analyzers." - }, - "CustomAnalyzer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.CustomAnalyzer", - "allOf": [ - { - "$ref": "#/definitions/LexicalAnalyzer" - } - ], - "properties": { - "tokenizer": { - "$ref": "#/definitions/LexicalTokenizerName", - "description": "The name of the tokenizer to use to divide continuous text into a sequence of tokens, such as breaking a sentence into words." - }, - "tokenFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenFilterName", - "x-nullable": false - }, - "description": "A list of token filters used to filter out or modify the tokens generated by a tokenizer. For example, you can specify a lowercase filter that converts all characters to lowercase. The filters are run in the order in which they are listed." - }, - "charFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/CharFilterName", - "x-nullable": false - }, - "description": "A list of character filters used to prepare input text before it is processed by the tokenizer. For instance, they can replace certain characters or symbols. The filters are run in the order in which they are listed." - } - }, - "required": [ - "tokenizer" - ], - "description": "Allows you to take control over the process of converting text into indexable/searchable tokens. It's a user-defined configuration consisting of a single predefined tokenizer and one or more filters. The tokenizer is responsible for breaking text into tokens, and the filters for modifying tokens emitted by the tokenizer." - }, - "PatternAnalyzer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternAnalyzer", - "allOf": [ - { - "$ref": "#/definitions/LexicalAnalyzer" - } - ], - "properties": { - "lowercase": { - "x-ms-client-name": "LowerCaseTerms", - "type": "boolean", - "default": true, - "description": "A value indicating whether terms should be lower-cased. Default is true." - }, - "pattern": { - "type": "string", - "default": "\\W+", - "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more non-word characters." - }, - "flags": { - "$ref": "#/definitions/RegexFlags", - "description": "Regular expression flags." - }, - "stopwords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of stopwords." - } - }, - "description": "Flexibly separates text into terms via a regular expression pattern. This analyzer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html" - } - }, - "LuceneStandardAnalyzer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardAnalyzer", - "allOf": [ - { - "$ref": "#/definitions/LexicalAnalyzer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters." - }, - "stopwords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of stopwords." - } - }, - "description": "Standard Apache Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardAnalyzer.html" - } - }, - "StopAnalyzer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopAnalyzer", - "allOf": [ - { - "$ref": "#/definitions/LexicalAnalyzer" - } - ], - "properties": { - "stopwords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of stopwords." - } - }, - "description": "Divides text at non-letters; Applies the lowercase and stopword token filters. This analyzer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html" - } - }, - "LexicalTokenizer": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the tokenizer." - }, - "name": { - "type": "string", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" - }, - "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." - } - }, - "required": [ - "@odata.type", - "name" - ], - "description": "Base type for tokenizers.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "ClassicTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.ClassicTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters." - } - }, - "description": "Grammar-based tokenizer that is suitable for processing most European-language documents. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicTokenizer.html" - } - }, - "TokenCharacterKind": { - "type": "string", - "enum": [ - "letter", - "digit", - "whitespace", - "punctuation", - "symbol" - ], - "x-ms-enum": { - "name": "TokenCharacterKind", - "modelAsString": false, - "values": [ - { - "value": "letter", - "name": "Letter", - "description": "Keeps letters in tokens." - }, - { - "value": "digit", - "name": "Digit", - "description": "Keeps digits in tokens." - }, - { - "value": "whitespace", - "name": "Whitespace", - "description": "Keeps whitespace in tokens." - }, - { - "value": "punctuation", - "name": "Punctuation", - "description": "Keeps punctuation in tokens." - }, - { - "value": "symbol", - "name": "Symbol", - "description": "Keeps symbols in tokens." - } - ] - }, - "description": "Represents classes of characters on which a token filter can operate." - }, - "EdgeNGramTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "maximum": 300, - "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "maximum": 300, - "description": "The maximum n-gram length. Default is 2. Maximum is 300." - }, - "tokenChars": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenCharacterKind", - "x-nullable": false - }, - "description": "Character classes to keep in the tokens." - } - }, - "description": "Tokenizes the input from an edge into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenizer.html" - } - }, - "KeywordTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "bufferSize": { - "type": "integer", - "format": "int32", - "default": 256, - "description": "The read buffer size in bytes. Default is 256." - } - }, - "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html" - }, - "x-az-search-deprecated": true - }, - "KeywordTokenizerV2": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizerV2", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 256, - "maximum": 300, - "description": "The maximum token length. Default is 256. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters." - } - }, - "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html" - } - }, - "MicrosoftTokenizerLanguage": { - "type": "string", - "enum": [ - "bangla", - "bulgarian", - "catalan", - "chineseSimplified", - "chineseTraditional", - "croatian", - "czech", - "danish", - "dutch", - "english", - "french", - "german", - "greek", - "gujarati", - "hindi", - "icelandic", - "indonesian", - "italian", - "japanese", - "kannada", - "korean", - "malay", - "malayalam", - "marathi", - "norwegianBokmaal", - "polish", - "portuguese", - "portugueseBrazilian", - "punjabi", - "romanian", - "russian", - "serbianCyrillic", - "serbianLatin", - "slovenian", - "spanish", - "swedish", - "tamil", - "telugu", - "thai", - "ukrainian", - "urdu", - "vietnamese" - ], - "x-ms-enum": { - "name": "MicrosoftTokenizerLanguage", - "modelAsString": false, - "values": [ - { - "value": "bangla", - "name": "Bangla", - "description": "Selects the Microsoft tokenizer for Bangla." - }, - { - "value": "bulgarian", - "name": "Bulgarian", - "description": "Selects the Microsoft tokenizer for Bulgarian." - }, - { - "value": "catalan", - "name": "Catalan", - "description": "Selects the Microsoft tokenizer for Catalan." - }, - { - "value": "chineseSimplified", - "name": "ChineseSimplified", - "description": "Selects the Microsoft tokenizer for Chinese (Simplified)." - }, - { - "value": "chineseTraditional", - "name": "ChineseTraditional", - "description": "Selects the Microsoft tokenizer for Chinese (Traditional)." - }, - { - "value": "croatian", - "name": "Croatian", - "description": "Selects the Microsoft tokenizer for Croatian." - }, - { - "value": "czech", - "name": "Czech", - "description": "Selects the Microsoft tokenizer for Czech." - }, - { - "value": "danish", - "name": "Danish", - "description": "Selects the Microsoft tokenizer for Danish." - }, - { - "value": "dutch", - "name": "Dutch", - "description": "Selects the Microsoft tokenizer for Dutch." - }, - { - "value": "english", - "name": "English", - "description": "Selects the Microsoft tokenizer for English." - }, - { - "value": "french", - "name": "French", - "description": "Selects the Microsoft tokenizer for French." - }, - { - "value": "german", - "name": "German", - "description": "Selects the Microsoft tokenizer for German." - }, - { - "value": "greek", - "name": "Greek", - "description": "Selects the Microsoft tokenizer for Greek." - }, - { - "value": "gujarati", - "name": "Gujarati", - "description": "Selects the Microsoft tokenizer for Gujarati." - }, - { - "value": "hindi", - "name": "Hindi", - "description": "Selects the Microsoft tokenizer for Hindi." - }, - { - "value": "icelandic", - "name": "Icelandic", - "description": "Selects the Microsoft tokenizer for Icelandic." - }, - { - "value": "indonesian", - "name": "Indonesian", - "description": "Selects the Microsoft tokenizer for Indonesian." - }, - { - "value": "italian", - "name": "Italian", - "description": "Selects the Microsoft tokenizer for Italian." - }, - { - "value": "japanese", - "name": "Japanese", - "description": "Selects the Microsoft tokenizer for Japanese." - }, - { - "value": "kannada", - "name": "Kannada", - "description": "Selects the Microsoft tokenizer for Kannada." - }, - { - "value": "korean", - "name": "Korean", - "description": "Selects the Microsoft tokenizer for Korean." - }, - { - "value": "malay", - "name": "Malay", - "description": "Selects the Microsoft tokenizer for Malay." - }, - { - "value": "malayalam", - "name": "Malayalam", - "description": "Selects the Microsoft tokenizer for Malayalam." - }, - { - "value": "marathi", - "name": "Marathi", - "description": "Selects the Microsoft tokenizer for Marathi." - }, - { - "value": "norwegianBokmaal", - "name": "NorwegianBokmaal", - "description": "Selects the Microsoft tokenizer for Norwegian (Bokmål)." - }, - { - "value": "polish", - "name": "Polish", - "description": "Selects the Microsoft tokenizer for Polish." - }, - { - "value": "portuguese", - "name": "Portuguese", - "description": "Selects the Microsoft tokenizer for Portuguese." - }, - { - "value": "portugueseBrazilian", - "name": "PortugueseBrazilian", - "description": "Selects the Microsoft tokenizer for Portuguese (Brazil)." - }, - { - "value": "punjabi", - "name": "Punjabi", - "description": "Selects the Microsoft tokenizer for Punjabi." - }, - { - "value": "romanian", - "name": "Romanian", - "description": "Selects the Microsoft tokenizer for Romanian." - }, - { - "value": "russian", - "name": "Russian", - "description": "Selects the Microsoft tokenizer for Russian." - }, - { - "value": "serbianCyrillic", - "name": "SerbianCyrillic", - "description": "Selects the Microsoft tokenizer for Serbian (Cyrillic)." - }, - { - "value": "serbianLatin", - "name": "SerbianLatin", - "description": "Selects the Microsoft tokenizer for Serbian (Latin)." - }, - { - "value": "slovenian", - "name": "Slovenian", - "description": "Selects the Microsoft tokenizer for Slovenian." - }, - { - "value": "spanish", - "name": "Spanish", - "description": "Selects the Microsoft tokenizer for Spanish." - }, - { - "value": "swedish", - "name": "Swedish", - "description": "Selects the Microsoft tokenizer for Swedish." - }, - { - "value": "tamil", - "name": "Tamil", - "description": "Selects the Microsoft tokenizer for Tamil." - }, - { - "value": "telugu", - "name": "Telugu", - "description": "Selects the Microsoft tokenizer for Telugu." - }, - { - "value": "thai", - "name": "Thai", - "description": "Selects the Microsoft tokenizer for Thai." - }, - { - "value": "ukrainian", - "name": "Ukrainian", - "description": "Selects the Microsoft tokenizer for Ukrainian." - }, - { - "value": "urdu", - "name": "Urdu", - "description": "Selects the Microsoft tokenizer for Urdu." - }, - { - "value": "vietnamese", - "name": "Vietnamese", - "description": "Selects the Microsoft tokenizer for Vietnamese." - } - ] - }, - "description": "Lists the languages supported by the Microsoft language tokenizer." - }, - "MicrosoftLanguageTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255." - }, - "isSearchTokenizer": { - "type": "boolean", - "default": false, - "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false." - }, - "language": { - "$ref": "#/definitions/MicrosoftTokenizerLanguage", - "description": "The language to use. The default is English." - } - }, - "description": "Divides text using language-specific rules." - }, - "MicrosoftStemmingTokenizerLanguage": { - "type": "string", - "enum": [ - "arabic", - "bangla", - "bulgarian", - "catalan", - "croatian", - "czech", - "danish", - "dutch", - "english", - "estonian", - "finnish", - "french", - "german", - "greek", - "gujarati", - "hebrew", - "hindi", - "hungarian", - "icelandic", - "indonesian", - "italian", - "kannada", - "latvian", - "lithuanian", - "malay", - "malayalam", - "marathi", - "norwegianBokmaal", - "polish", - "portuguese", - "portugueseBrazilian", - "punjabi", - "romanian", - "russian", - "serbianCyrillic", - "serbianLatin", - "slovak", - "slovenian", - "spanish", - "swedish", - "tamil", - "telugu", - "turkish", - "ukrainian", - "urdu" - ], - "x-ms-enum": { - "name": "MicrosoftStemmingTokenizerLanguage", - "modelAsString": false, - "values": [ - { - "value": "arabic", - "name": "Arabic", - "description": "Selects the Microsoft stemming tokenizer for Arabic." - }, - { - "value": "bangla", - "name": "Bangla", - "description": "Selects the Microsoft stemming tokenizer for Bangla." - }, - { - "value": "bulgarian", - "name": "Bulgarian", - "description": "Selects the Microsoft stemming tokenizer for Bulgarian." - }, - { - "value": "catalan", - "name": "Catalan", - "description": "Selects the Microsoft stemming tokenizer for Catalan." - }, - { - "value": "croatian", - "name": "Croatian", - "description": "Selects the Microsoft stemming tokenizer for Croatian." - }, - { - "value": "czech", - "name": "Czech", - "description": "Selects the Microsoft stemming tokenizer for Czech." - }, - { - "value": "danish", - "name": "Danish", - "description": "Selects the Microsoft stemming tokenizer for Danish." - }, - { - "value": "dutch", - "name": "Dutch", - "description": "Selects the Microsoft stemming tokenizer for Dutch." - }, - { - "value": "english", - "name": "English", - "description": "Selects the Microsoft stemming tokenizer for English." - }, - { - "value": "estonian", - "name": "Estonian", - "description": "Selects the Microsoft stemming tokenizer for Estonian." - }, - { - "value": "finnish", - "name": "Finnish", - "description": "Selects the Microsoft stemming tokenizer for Finnish." - }, - { - "value": "french", - "name": "French", - "description": "Selects the Microsoft stemming tokenizer for French." - }, - { - "value": "german", - "name": "German", - "description": "Selects the Microsoft stemming tokenizer for German." - }, - { - "value": "greek", - "name": "Greek", - "description": "Selects the Microsoft stemming tokenizer for Greek." - }, - { - "value": "gujarati", - "name": "Gujarati", - "description": "Selects the Microsoft stemming tokenizer for Gujarati." - }, - { - "value": "hebrew", - "name": "Hebrew", - "description": "Selects the Microsoft stemming tokenizer for Hebrew." - }, - { - "value": "hindi", - "name": "Hindi", - "description": "Selects the Microsoft stemming tokenizer for Hindi." - }, - { - "value": "hungarian", - "name": "Hungarian", - "description": "Selects the Microsoft stemming tokenizer for Hungarian." - }, - { - "value": "icelandic", - "name": "Icelandic", - "description": "Selects the Microsoft stemming tokenizer for Icelandic." - }, - { - "value": "indonesian", - "name": "Indonesian", - "description": "Selects the Microsoft stemming tokenizer for Indonesian." - }, - { - "value": "italian", - "name": "Italian", - "description": "Selects the Microsoft stemming tokenizer for Italian." - }, - { - "value": "kannada", - "name": "Kannada", - "description": "Selects the Microsoft stemming tokenizer for Kannada." - }, - { - "value": "latvian", - "name": "Latvian", - "description": "Selects the Microsoft stemming tokenizer for Latvian." - }, - { - "value": "lithuanian", - "name": "Lithuanian", - "description": "Selects the Microsoft stemming tokenizer for Lithuanian." - }, - { - "value": "malay", - "name": "Malay", - "description": "Selects the Microsoft stemming tokenizer for Malay." - }, - { - "value": "malayalam", - "name": "Malayalam", - "description": "Selects the Microsoft stemming tokenizer for Malayalam." - }, - { - "value": "marathi", - "name": "Marathi", - "description": "Selects the Microsoft stemming tokenizer for Marathi." - }, - { - "value": "norwegianBokmaal", - "name": "NorwegianBokmaal", - "description": "Selects the Microsoft stemming tokenizer for Norwegian (Bokmål)." - }, - { - "value": "polish", - "name": "Polish", - "description": "Selects the Microsoft stemming tokenizer for Polish." - }, - { - "value": "portuguese", - "name": "Portuguese", - "description": "Selects the Microsoft stemming tokenizer for Portuguese." - }, - { - "value": "portugueseBrazilian", - "name": "PortugueseBrazilian", - "description": "Selects the Microsoft stemming tokenizer for Portuguese (Brazil)." - }, - { - "value": "punjabi", - "name": "Punjabi", - "description": "Selects the Microsoft stemming tokenizer for Punjabi." - }, - { - "value": "romanian", - "name": "Romanian", - "description": "Selects the Microsoft stemming tokenizer for Romanian." - }, - { - "value": "russian", - "name": "Russian", - "description": "Selects the Microsoft stemming tokenizer for Russian." - }, - { - "value": "serbianCyrillic", - "name": "SerbianCyrillic", - "description": "Selects the Microsoft stemming tokenizer for Serbian (Cyrillic)." - }, - { - "value": "serbianLatin", - "name": "SerbianLatin", - "description": "Selects the Microsoft stemming tokenizer for Serbian (Latin)." - }, - { - "value": "slovak", - "name": "Slovak", - "description": "Selects the Microsoft stemming tokenizer for Slovak." - }, - { - "value": "slovenian", - "name": "Slovenian", - "description": "Selects the Microsoft stemming tokenizer for Slovenian." - }, - { - "value": "spanish", - "name": "Spanish", - "description": "Selects the Microsoft stemming tokenizer for Spanish." - }, - { - "value": "swedish", - "name": "Swedish", - "description": "Selects the Microsoft stemming tokenizer for Swedish." - }, - { - "value": "tamil", - "name": "Tamil", - "description": "Selects the Microsoft stemming tokenizer for Tamil." - }, - { - "value": "telugu", - "name": "Telugu", - "description": "Selects the Microsoft stemming tokenizer for Telugu." - }, - { - "value": "turkish", - "name": "Turkish", - "description": "Selects the Microsoft stemming tokenizer for Turkish." - }, - { - "value": "ukrainian", - "name": "Ukrainian", - "description": "Selects the Microsoft stemming tokenizer for Ukrainian." - }, - { - "value": "urdu", - "name": "Urdu", - "description": "Selects the Microsoft stemming tokenizer for Urdu." - } - ] - }, - "description": "Lists the languages supported by the Microsoft language stemming tokenizer." - }, - "MicrosoftLanguageStemmingTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255." - }, - "isSearchTokenizer": { - "type": "boolean", - "default": false, - "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false." - }, - "language": { - "$ref": "#/definitions/MicrosoftStemmingTokenizerLanguage", - "description": "The language to use. The default is English." - } - }, - "description": "Divides text using language-specific rules and reduces words to their base forms." - }, - "NGramTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "maximum": 300, - "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "maximum": 300, - "description": "The maximum n-gram length. Default is 2. Maximum is 300." - }, - "tokenChars": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenCharacterKind", - "x-nullable": false - }, - "description": "Character classes to keep in the tokens." - } - }, - "description": "Tokenizes the input into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenizer.html" - } - }, - "PathHierarchyTokenizerV2": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PathHierarchyTokenizerV2", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "delimiter": { - "type": "string", - "format": "char", - "default": "/", - "description": "The delimiter character to use. Default is \"/\"." - }, - "replacement": { - "type": "string", - "format": "char", - "default": "/", - "description": "A value that, if set, replaces the delimiter character. Default is \"/\"." - }, - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 300, - "maximum": 300, - "description": "The maximum token length. Default and maximum is 300." - }, - "reverse": { - "x-ms-client-name": "ReverseTokenOrder", - "type": "boolean", - "default": false, - "description": "A value indicating whether to generate tokens in reverse order. Default is false." - }, - "skip": { - "x-ms-client-name": "NumberOfTokensToSkip", - "type": "integer", - "format": "int32", - "default": 0, - "description": "The number of initial tokens to skip. Default is 0." - } - }, - "description": "Tokenizer for path-like hierarchies. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html" - } - }, - "PatternTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "pattern": { - "type": "string", - "default": "\\W+", - "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more non-word characters." - }, - "flags": { - "$ref": "#/definitions/RegexFlags", - "description": "Regular expression flags." - }, - "group": { - "type": "integer", - "format": "int32", - "default": -1, - "description": "The zero-based ordinal of the matching group in the regular expression pattern to extract into tokens. Use -1 if you want to use the entire pattern to split the input into tokens, irrespective of matching groups. Default is -1." - } - }, - "description": "Tokenizer that uses regex pattern matching to construct distinct tokens. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternTokenizer.html" - } - }, - "LuceneStandardTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split." - } - }, - "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html" - }, - "x-az-search-deprecated": true - }, - "LuceneStandardTokenizerV2": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizerV2", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters." - } - }, - "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html" - } - }, - "UaxUrlEmailTokenizer": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.UaxUrlEmailTokenizer", - "allOf": [ - { - "$ref": "#/definitions/LexicalTokenizer" - } - ], - "properties": { - "maxTokenLength": { - "type": "integer", - "format": "int32", - "default": 255, - "maximum": 300, - "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters." - } - }, - "description": "Tokenizes urls and emails as one token. This tokenizer is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/UAX29URLEmailTokenizer.html" - } - }, - "TokenFilter": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the token filter." - }, - "name": { - "type": "string", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" - }, - "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." - } - }, - "required": [ - "@odata.type", - "name" - ], - "description": "Base type for token filters.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "AsciiFoldingTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.AsciiFoldingTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "preserveOriginal": { - "type": "boolean", - "default": false, - "description": "A value indicating whether the original token will be kept. Default is false." - } - }, - "description": "Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode block) into their ASCII equivalents, if such equivalents exist. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html" - } - }, - "CjkBigramTokenFilterScripts": { - "type": "string", - "enum": [ - "han", - "hiragana", - "katakana", - "hangul" - ], - "x-ms-enum": { - "name": "CjkBigramTokenFilterScripts", - "modelAsString": false, - "values": [ - { - "value": "han", - "name": "Han", - "description": "Ignore Han script when forming bigrams of CJK terms." - }, - { - "value": "hiragana", - "name": "Hiragana", - "description": "Ignore Hiragana script when forming bigrams of CJK terms." - }, - { - "value": "katakana", - "name": "Katakana", - "description": "Ignore Katakana script when forming bigrams of CJK terms." - }, - { - "value": "hangul", - "name": "Hangul", - "description": "Ignore Hangul script when forming bigrams of CJK terms." - } - ] - }, - "description": "Scripts that can be ignored by CjkBigramTokenFilter." - }, - "CjkBigramTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.CjkBigramTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "ignoreScripts": { - "type": "array", - "items": { - "$ref": "#/definitions/CjkBigramTokenFilterScripts", - "x-nullable": false - }, - "description": "The scripts to ignore." - }, - "outputUnigrams": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to output both unigrams and bigrams (if true), or just bigrams (if false). Default is false." - } - }, - "description": "Forms bigrams of CJK terms that are generated from the standard tokenizer. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html" - } - }, - "CommonGramTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.CommonGramTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "commonWords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The set of common words." - }, - "ignoreCase": { - "type": "boolean", - "default": false, - "description": "A value indicating whether common words matching will be case insensitive. Default is false." - }, - "queryMode": { - "x-ms-client-name": "UseQueryMode", - "type": "boolean", - "default": false, - "description": "A value that indicates whether the token filter is in query mode. When in query mode, the token filter generates bigrams and then removes common words and single terms followed by a common word. Default is false." - } - }, - "required": [ - "commonWords" - ], - "description": "Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/commongrams/CommonGramsFilter.html" - } - }, - "DictionaryDecompounderTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "wordList": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of words to match against." - }, - "minWordSize": { - "type": "integer", - "format": "int32", - "default": 5, - "maximum": 300, - "description": "The minimum word size. Only words longer than this get processed. Default is 5. Maximum is 300." - }, - "minSubwordSize": { - "type": "integer", - "format": "int32", - "default": 2, - "maximum": 300, - "description": "The minimum subword size. Only subwords longer than this are outputted. Default is 2. Maximum is 300." - }, - "maxSubwordSize": { - "type": "integer", - "format": "int32", - "default": 15, - "maximum": 300, - "description": "The maximum subword size. Only subwords shorter than this are outputted. Default is 15. Maximum is 300." - }, - "onlyLongestMatch": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to add only the longest matching subword to the output. Default is false." - } - }, - "required": [ - "wordList" - ], - "description": "Decomposes compound words found in many Germanic languages. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/compound/DictionaryCompoundWordTokenFilter.html" - } - }, - "EdgeNGramTokenFilterSide": { - "type": "string", - "enum": [ - "front", - "back" - ], - "x-ms-enum": { - "name": "EdgeNGramTokenFilterSide", - "modelAsString": false, - "values": [ - { - "value": "front", - "name": "Front", - "description": "Specifies that the n-gram should be generated from the front of the input." - }, - { - "value": "back", - "name": "Back", - "description": "Specifies that the n-gram should be generated from the back of the input." - } - ] - }, - "description": "Specifies which side of the input an n-gram should be generated from." - }, - "EdgeNGramTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "description": "The maximum n-gram length. Default is 2." - }, - "side": { - "$ref": "#/definitions/EdgeNGramTokenFilterSide", - "default": "front", - "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"." - } - }, - "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html" - }, - "x-az-search-deprecated": true - }, - "EdgeNGramTokenFilterV2": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilterV2", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "maximum": 300, - "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "maximum": 300, - "description": "The maximum n-gram length. Default is 2. Maximum is 300." - }, - "side": { - "$ref": "#/definitions/EdgeNGramTokenFilterSide", - "default": "front", - "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"." - } - }, - "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html" - } - }, - "ElisionTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.ElisionTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "articles": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The set of articles to remove." - } - }, - "description": "Removes elisions. For example, \"l'avion\" (the plane) will be converted to \"avion\" (plane). This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html" - } - }, - "KeepTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeepTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "keepWords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of words to keep." - }, - "keepWordsCase": { - "x-ms-client-name": "LowerCaseKeepWords", - "type": "boolean", - "default": false, - "description": "A value indicating whether to lower case all words first. Default is false." - } - }, - "required": [ - "keepWords" - ], - "description": "A token filter that only keeps tokens with text contained in a specified list of words. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeepWordFilter.html" - } - }, - "KeywordMarkerTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordMarkerTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "keywords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of words to mark as keywords." - }, - "ignoreCase": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false." - } - }, - "required": [ - "keywords" - ], - "description": "Marks terms as keywords. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordMarkerFilter.html" - } - }, - "LengthTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.LengthTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "min": { - "x-ms-client-name": "minLength", - "type": "integer", - "format": "int32", - "default": 0, - "maximum": 300, - "description": "The minimum length in characters. Default is 0. Maximum is 300. Must be less than the value of max." - }, - "max": { - "x-ms-client-name": "maxLength", - "type": "integer", - "format": "int32", - "default": 300, - "maximum": 300, - "description": "The maximum length in characters. Default and maximum is 300." - } - }, - "description": "Removes words that are too long or too short. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilter.html" - } - }, - "LimitTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.LimitTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "maxTokenCount": { - "type": "integer", - "format": "int32", - "default": 1, - "description": "The maximum number of tokens to produce. Default is 1." - }, - "consumeAllTokens": { - "type": "boolean", - "default": false, - "description": "A value indicating whether all tokens from the input must be consumed even if maxTokenCount is reached. Default is false." - } - }, - "description": "Limits the number of tokens while indexing. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html" - } - }, - "NGramTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "description": "The maximum n-gram length. Default is 2." - } - }, - "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html" - }, - "x-az-search-deprecated": true - }, - "NGramTokenFilterV2": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilterV2", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "minGram": { - "type": "integer", - "format": "int32", - "default": 1, - "maximum": 300, - "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram." - }, - "maxGram": { - "type": "integer", - "format": "int32", - "default": 2, - "maximum": 300, - "description": "The maximum n-gram length. Default is 2. Maximum is 300." - } - }, - "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html" - } - }, - "PatternCaptureTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternCaptureTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "patterns": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of patterns to match against each token." - }, - "preserveOriginal": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to return the original token even if one of the patterns matches. Default is true." - } - }, - "required": [ - "patterns" - ], - "description": "Uses Java regexes to emit multiple tokens - one for each capture group in one or more patterns. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternCaptureGroupTokenFilter.html" - } - }, - "PatternReplaceTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "pattern": { - "type": "string", - "description": "A regular expression pattern." - }, - "replacement": { - "type": "string", - "description": "The replacement text." - } - }, - "required": [ - "pattern", - "replacement" - ], - "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceFilter.html" - } - }, - "PhoneticEncoder": { - "type": "string", - "enum": [ - "metaphone", - "doubleMetaphone", - "soundex", - "refinedSoundex", - "caverphone1", - "caverphone2", - "cologne", - "nysiis", - "koelnerPhonetik", - "haasePhonetik", - "beiderMorse" - ], - "x-ms-enum": { - "name": "PhoneticEncoder", - "modelAsString": false, - "values": [ - { - "value": "metaphone", - "name": "Metaphone", - "description": "Encodes a token into a Metaphone value." - }, - { - "value": "doubleMetaphone", - "name": "DoubleMetaphone", - "description": "Encodes a token into a double metaphone value." - }, - { - "value": "soundex", - "name": "Soundex", - "description": "Encodes a token into a Soundex value." - }, - { - "value": "refinedSoundex", - "name": "RefinedSoundex", - "description": "Encodes a token into a Refined Soundex value." - }, - { - "value": "caverphone1", - "name": "Caverphone1", - "description": "Encodes a token into a Caverphone 1.0 value." - }, - { - "value": "caverphone2", - "name": "Caverphone2", - "description": "Encodes a token into a Caverphone 2.0 value." - }, - { - "value": "cologne", - "name": "Cologne", - "description": "Encodes a token into a Cologne Phonetic value." - }, - { - "value": "nysiis", - "name": "Nysiis", - "description": "Encodes a token into a NYSIIS value." - }, - { - "value": "koelnerPhonetik", - "name": "KoelnerPhonetik", - "description": "Encodes a token using the Kölner Phonetik algorithm." - }, - { - "value": "haasePhonetik", - "name": "HaasePhonetik", - "description": "Encodes a token using the Haase refinement of the Kölner Phonetik algorithm." - }, - { - "value": "beiderMorse", - "name": "BeiderMorse", - "description": "Encodes a token into a Beider-Morse value." - } - ] - }, - "description": "Identifies the type of phonetic encoder to use with a PhoneticTokenFilter." - }, - "PhoneticTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PhoneticTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "encoder": { - "$ref": "#/definitions/PhoneticEncoder", - "default": "metaphone", - "description": "The phonetic encoder to use. Default is \"metaphone\"." - }, - "replace": { - "x-ms-client-name": "ReplaceOriginalTokens", - "type": "boolean", - "default": true, - "description": "A value indicating whether encoded tokens should replace original tokens. If false, encoded tokens are added as synonyms. Default is true." - } - }, - "description": "Create tokens for phonetic matches. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "https://lucene.apache.org/core/4_10_3/analyzers-phonetic/org/apache/lucene/analysis/phonetic/package-tree.html" - } - }, - "ShingleTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.ShingleTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "maxShingleSize": { - "type": "integer", - "format": "int32", - "default": 2, - "minimum": 2, - "description": "The maximum shingle size. Default and minimum value is 2." - }, - "minShingleSize": { - "type": "integer", - "format": "int32", - "default": 2, - "minimum": 2, - "description": "The minimum shingle size. Default and minimum value is 2. Must be less than the value of maxShingleSize." - }, - "outputUnigrams": { - "type": "boolean", - "default": true, - "description": "A value indicating whether the output stream will contain the input tokens (unigrams) as well as shingles. Default is true." - }, - "outputUnigramsIfNoShingles": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to output unigrams for those times when no shingles are available. This property takes precedence when outputUnigrams is set to false. Default is false." - }, - "tokenSeparator": { - "type": "string", - "default": " ", - "description": "The string to use when joining adjacent tokens to form a shingle. Default is a single space (\" \")." - }, - "filterToken": { - "type": "string", - "default": "_", - "description": "The string to insert for each position at which there is no token. Default is an underscore (\"_\")." - } - }, - "description": "Creates combinations of tokens as a single token. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html" - } - }, - "SnowballTokenFilterLanguage": { - "type": "string", - "enum": [ - "armenian", - "basque", - "catalan", - "danish", - "dutch", - "english", - "finnish", - "french", - "german", - "german2", - "hungarian", - "italian", - "kp", - "lovins", - "norwegian", - "porter", - "portuguese", - "romanian", - "russian", - "spanish", - "swedish", - "turkish" - ], - "x-ms-enum": { - "name": "SnowballTokenFilterLanguage", - "modelAsString": false, - "values": [ - { - "value": "armenian", - "name": "Armenian", - "description": "Selects the Lucene Snowball stemming tokenizer for Armenian." - }, - { - "value": "basque", - "name": "Basque", - "description": "Selects the Lucene Snowball stemming tokenizer for Basque." - }, - { - "value": "catalan", - "name": "Catalan", - "description": "Selects the Lucene Snowball stemming tokenizer for Catalan." - }, - { - "value": "danish", - "name": "Danish", - "description": "Selects the Lucene Snowball stemming tokenizer for Danish." - }, - { - "value": "dutch", - "name": "Dutch", - "description": "Selects the Lucene Snowball stemming tokenizer for Dutch." - }, - { - "value": "english", - "name": "English", - "description": "Selects the Lucene Snowball stemming tokenizer for English." - }, - { - "value": "finnish", - "name": "Finnish", - "description": "Selects the Lucene Snowball stemming tokenizer for Finnish." - }, - { - "value": "french", - "name": "French", - "description": "Selects the Lucene Snowball stemming tokenizer for French." - }, - { - "value": "german", - "name": "German", - "description": "Selects the Lucene Snowball stemming tokenizer for German." - }, - { - "value": "german2", - "name": "German2", - "description": "Selects the Lucene Snowball stemming tokenizer that uses the German variant algorithm." - }, - { - "value": "hungarian", - "name": "Hungarian", - "description": "Selects the Lucene Snowball stemming tokenizer for Hungarian." - }, - { - "value": "italian", - "name": "Italian", - "description": "Selects the Lucene Snowball stemming tokenizer for Italian." - }, - { - "value": "kp", - "name": "Kp", - "description": "Selects the Lucene Snowball stemming tokenizer for Dutch that uses the Kraaij-Pohlmann stemming algorithm." - }, - { - "value": "lovins", - "name": "Lovins", - "description": "Selects the Lucene Snowball stemming tokenizer for English that uses the Lovins stemming algorithm." - }, - { - "value": "norwegian", - "name": "Norwegian", - "description": "Selects the Lucene Snowball stemming tokenizer for Norwegian." - }, - { - "value": "porter", - "name": "Porter", - "description": "Selects the Lucene Snowball stemming tokenizer for English that uses the Porter stemming algorithm." - }, - { - "value": "portuguese", - "name": "Portuguese", - "description": "Selects the Lucene Snowball stemming tokenizer for Portuguese." - }, - { - "value": "romanian", - "name": "Romanian", - "description": "Selects the Lucene Snowball stemming tokenizer for Romanian." - }, - { - "value": "russian", - "name": "Russian", - "description": "Selects the Lucene Snowball stemming tokenizer for Russian." - }, - { - "value": "spanish", - "name": "Spanish", - "description": "Selects the Lucene Snowball stemming tokenizer for Spanish." - }, - { - "value": "swedish", - "name": "Swedish", - "description": "Selects the Lucene Snowball stemming tokenizer for Swedish." - }, - { - "value": "turkish", - "name": "Turkish", - "description": "Selects the Lucene Snowball stemming tokenizer for Turkish." - } - ] - }, - "description": "The language to use for a Snowball token filter." - }, - "SnowballTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.SnowballTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "language": { - "$ref": "#/definitions/SnowballTokenFilterLanguage", - "description": "The language to use." - } - }, - "required": [ - "language" - ], - "description": "A filter that stems words using a Snowball-generated stemmer. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.html" - } - }, - "StemmerTokenFilterLanguage": { - "type": "string", - "enum": [ - "arabic", - "armenian", - "basque", - "brazilian", - "bulgarian", - "catalan", - "czech", - "danish", - "dutch", - "dutchKp", - "english", - "lightEnglish", - "minimalEnglish", - "possessiveEnglish", - "porter2", - "lovins", - "finnish", - "lightFinnish", - "french", - "lightFrench", - "minimalFrench", - "galician", - "minimalGalician", - "german", - "german2", - "lightGerman", - "minimalGerman", - "greek", - "hindi", - "hungarian", - "lightHungarian", - "indonesian", - "irish", - "italian", - "lightItalian", - "sorani", - "latvian", - "norwegian", - "lightNorwegian", - "minimalNorwegian", - "lightNynorsk", - "minimalNynorsk", - "portuguese", - "lightPortuguese", - "minimalPortuguese", - "portugueseRslp", - "romanian", - "russian", - "lightRussian", - "spanish", - "lightSpanish", - "swedish", - "lightSwedish", - "turkish" - ], - "x-ms-enum": { - "name": "StemmerTokenFilterLanguage", - "modelAsString": false, - "values": [ - { - "value": "arabic", - "name": "Arabic", - "description": "Selects the Lucene stemming tokenizer for Arabic." - }, - { - "value": "armenian", - "name": "Armenian", - "description": "Selects the Lucene stemming tokenizer for Armenian." - }, - { - "value": "basque", - "name": "Basque", - "description": "Selects the Lucene stemming tokenizer for Basque." - }, - { - "value": "brazilian", - "name": "Brazilian", - "description": "Selects the Lucene stemming tokenizer for Portuguese (Brazil)." - }, - { - "value": "bulgarian", - "name": "Bulgarian", - "description": "Selects the Lucene stemming tokenizer for Bulgarian." - }, - { - "value": "catalan", - "name": "Catalan", - "description": "Selects the Lucene stemming tokenizer for Catalan." - }, - { - "value": "czech", - "name": "Czech", - "description": "Selects the Lucene stemming tokenizer for Czech." - }, - { - "value": "danish", - "name": "Danish", - "description": "Selects the Lucene stemming tokenizer for Danish." - }, - { - "value": "dutch", - "name": "Dutch", - "description": "Selects the Lucene stemming tokenizer for Dutch." - }, - { - "value": "dutchKp", - "name": "DutchKp", - "description": "Selects the Lucene stemming tokenizer for Dutch that uses the Kraaij-Pohlmann stemming algorithm." - }, - { - "value": "english", - "name": "English", - "description": "Selects the Lucene stemming tokenizer for English." - }, - { - "value": "lightEnglish", - "name": "LightEnglish", - "description": "Selects the Lucene stemming tokenizer for English that does light stemming." - }, - { - "value": "minimalEnglish", - "name": "MinimalEnglish", - "description": "Selects the Lucene stemming tokenizer for English that does minimal stemming." - }, - { - "value": "possessiveEnglish", - "name": "PossessiveEnglish", - "description": "Selects the Lucene stemming tokenizer for English that removes trailing possessives from words." - }, - { - "value": "porter2", - "name": "Porter2", - "description": "Selects the Lucene stemming tokenizer for English that uses the Porter2 stemming algorithm." - }, - { - "value": "lovins", - "name": "Lovins", - "description": "Selects the Lucene stemming tokenizer for English that uses the Lovins stemming algorithm." - }, - { - "value": "finnish", - "name": "Finnish", - "description": "Selects the Lucene stemming tokenizer for Finnish." - }, - { - "value": "lightFinnish", - "name": "LightFinnish", - "description": "Selects the Lucene stemming tokenizer for Finnish that does light stemming." - }, - { - "value": "french", - "name": "French", - "description": "Selects the Lucene stemming tokenizer for French." - }, - { - "value": "lightFrench", - "name": "LightFrench", - "description": "Selects the Lucene stemming tokenizer for French that does light stemming." - }, - { - "value": "minimalFrench", - "name": "MinimalFrench", - "description": "Selects the Lucene stemming tokenizer for French that does minimal stemming." - }, - { - "value": "galician", - "name": "Galician", - "description": "Selects the Lucene stemming tokenizer for Galician." - }, - { - "value": "minimalGalician", - "name": "MinimalGalician", - "description": "Selects the Lucene stemming tokenizer for Galician that does minimal stemming." - }, - { - "value": "german", - "name": "German", - "description": "Selects the Lucene stemming tokenizer for German." - }, - { - "value": "german2", - "name": "German2", - "description": "Selects the Lucene stemming tokenizer that uses the German variant algorithm." - }, - { - "value": "lightGerman", - "name": "LightGerman", - "description": "Selects the Lucene stemming tokenizer for German that does light stemming." - }, - { - "value": "minimalGerman", - "name": "MinimalGerman", - "description": "Selects the Lucene stemming tokenizer for German that does minimal stemming." - }, - { - "value": "greek", - "name": "Greek", - "description": "Selects the Lucene stemming tokenizer for Greek." - }, - { - "value": "hindi", - "name": "Hindi", - "description": "Selects the Lucene stemming tokenizer for Hindi." - }, - { - "value": "hungarian", - "name": "Hungarian", - "description": "Selects the Lucene stemming tokenizer for Hungarian." - }, - { - "value": "lightHungarian", - "name": "LightHungarian", - "description": "Selects the Lucene stemming tokenizer for Hungarian that does light stemming." - }, - { - "value": "indonesian", - "name": "Indonesian", - "description": "Selects the Lucene stemming tokenizer for Indonesian." - }, - { - "value": "irish", - "name": "Irish", - "description": "Selects the Lucene stemming tokenizer for Irish." - }, - { - "value": "italian", - "name": "Italian", - "description": "Selects the Lucene stemming tokenizer for Italian." - }, - { - "value": "lightItalian", - "name": "LightItalian", - "description": "Selects the Lucene stemming tokenizer for Italian that does light stemming." - }, - { - "value": "sorani", - "name": "Sorani", - "description": "Selects the Lucene stemming tokenizer for Sorani." - }, - { - "value": "latvian", - "name": "Latvian", - "description": "Selects the Lucene stemming tokenizer for Latvian." - }, - { - "value": "norwegian", - "name": "Norwegian", - "description": "Selects the Lucene stemming tokenizer for Norwegian (Bokmål)." - }, - { - "value": "lightNorwegian", - "name": "LightNorwegian", - "description": "Selects the Lucene stemming tokenizer for Norwegian (Bokmål) that does light stemming." - }, - { - "value": "minimalNorwegian", - "name": "MinimalNorwegian", - "description": "Selects the Lucene stemming tokenizer for Norwegian (Bokmål) that does minimal stemming." - }, - { - "value": "lightNynorsk", - "name": "LightNynorsk", - "description": "Selects the Lucene stemming tokenizer for Norwegian (Nynorsk) that does light stemming." - }, - { - "value": "minimalNynorsk", - "name": "MinimalNynorsk", - "description": "Selects the Lucene stemming tokenizer for Norwegian (Nynorsk) that does minimal stemming." - }, - { - "value": "portuguese", - "name": "Portuguese", - "description": "Selects the Lucene stemming tokenizer for Portuguese." - }, - { - "value": "lightPortuguese", - "name": "LightPortuguese", - "description": "Selects the Lucene stemming tokenizer for Portuguese that does light stemming." - }, - { - "value": "minimalPortuguese", - "name": "MinimalPortuguese", - "description": "Selects the Lucene stemming tokenizer for Portuguese that does minimal stemming." - }, - { - "value": "portugueseRslp", - "name": "PortugueseRslp", - "description": "Selects the Lucene stemming tokenizer for Portuguese that uses the RSLP stemming algorithm." - }, - { - "value": "romanian", - "name": "Romanian", - "description": "Selects the Lucene stemming tokenizer for Romanian." - }, - { - "value": "russian", - "name": "Russian", - "description": "Selects the Lucene stemming tokenizer for Russian." - }, - { - "value": "lightRussian", - "name": "LightRussian", - "description": "Selects the Lucene stemming tokenizer for Russian that does light stemming." - }, - { - "value": "spanish", - "name": "Spanish", - "description": "Selects the Lucene stemming tokenizer for Spanish." - }, - { - "value": "lightSpanish", - "name": "LightSpanish", - "description": "Selects the Lucene stemming tokenizer for Spanish that does light stemming." - }, - { - "value": "swedish", - "name": "Swedish", - "description": "Selects the Lucene stemming tokenizer for Swedish." - }, - { - "value": "lightSwedish", - "name": "LightSwedish", - "description": "Selects the Lucene stemming tokenizer for Swedish that does light stemming." - }, - { - "value": "turkish", - "name": "Turkish", - "description": "Selects the Lucene stemming tokenizer for Turkish." - } - ] - }, - "description": "The language to use for a stemmer token filter." - }, - "StemmerTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "language": { - "$ref": "#/definitions/StemmerTokenFilterLanguage", - "description": "The language to use." - } - }, - "required": [ - "language" - ], - "description": "Language specific stemming filter. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#TokenFilters" - } - }, - "StemmerOverrideTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerOverrideTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "rules": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of stemming rules in the following format: \"word => stem\", for example: \"ran => run\"." - } - }, - "required": [ - "rules" - ], - "description": "Provides the ability to override other stemming filters with custom dictionary-based stemming. Any dictionary-stemmed terms will be marked as keywords so that they will not be stemmed with stemmers down the chain. Must be placed before any stemming filters. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/StemmerOverrideFilter.html" - } - }, - "StopwordsList": { - "type": "string", - "enum": [ - "arabic", - "armenian", - "basque", - "brazilian", - "bulgarian", - "catalan", - "czech", - "danish", - "dutch", - "english", - "finnish", - "french", - "galician", - "german", - "greek", - "hindi", - "hungarian", - "indonesian", - "irish", - "italian", - "latvian", - "norwegian", - "persian", - "portuguese", - "romanian", - "russian", - "sorani", - "spanish", - "swedish", - "thai", - "turkish" - ], - "x-ms-enum": { - "name": "StopwordsList", - "modelAsString": false, - "values": [ - { - "value": "arabic", - "name": "Arabic", - "description": "Selects the stopword list for Arabic." - }, - { - "value": "armenian", - "name": "Armenian", - "description": "Selects the stopword list for Armenian." - }, - { - "value": "basque", - "name": "Basque", - "description": "Selects the stopword list for Basque." - }, - { - "value": "brazilian", - "name": "Brazilian", - "description": "Selects the stopword list for Portuguese (Brazil)." - }, - { - "value": "bulgarian", - "name": "Bulgarian", - "description": "Selects the stopword list for Bulgarian." - }, - { - "value": "catalan", - "name": "Catalan", - "description": "Selects the stopword list for Catalan." - }, - { - "value": "czech", - "name": "Czech", - "description": "Selects the stopword list for Czech." - }, - { - "value": "danish", - "name": "Danish", - "description": "Selects the stopword list for Danish." - }, - { - "value": "dutch", - "name": "Dutch", - "description": "Selects the stopword list for Dutch." - }, - { - "value": "english", - "name": "English", - "description": "Selects the stopword list for English." - }, - { - "value": "finnish", - "name": "Finnish", - "description": "Selects the stopword list for Finnish." - }, - { - "value": "french", - "name": "French", - "description": "Selects the stopword list for French." - }, - { - "value": "galician", - "name": "Galician", - "description": "Selects the stopword list for Galician." - }, - { - "value": "german", - "name": "German", - "description": "Selects the stopword list for German." - }, - { - "value": "greek", - "name": "Greek", - "description": "Selects the stopword list for Greek." - }, - { - "value": "hindi", - "name": "Hindi", - "description": "Selects the stopword list for Hindi." - }, - { - "value": "hungarian", - "name": "Hungarian", - "description": "Selects the stopword list for Hungarian." - }, - { - "value": "indonesian", - "name": "Indonesian", - "description": "Selects the stopword list for Indonesian." - }, - { - "value": "irish", - "name": "Irish", - "description": "Selects the stopword list for Irish." - }, - { - "value": "italian", - "name": "Italian", - "description": "Selects the stopword list for Italian." - }, - { - "value": "latvian", - "name": "Latvian", - "description": "Selects the stopword list for Latvian." - }, - { - "value": "norwegian", - "name": "Norwegian", - "description": "Selects the stopword list for Norwegian." - }, - { - "value": "persian", - "name": "Persian", - "description": "Selects the stopword list for Persian." - }, - { - "value": "portuguese", - "name": "Portuguese", - "description": "Selects the stopword list for Portuguese." - }, - { - "value": "romanian", - "name": "Romanian", - "description": "Selects the stopword list for Romanian." - }, - { - "value": "russian", - "name": "Russian", - "description": "Selects the stopword list for Russian." - }, - { - "value": "sorani", - "name": "Sorani", - "description": "Selects the stopword list for Sorani." - }, - { - "value": "spanish", - "name": "Spanish", - "description": "Selects the stopword list for Spanish." - }, - { - "value": "swedish", - "name": "Swedish", - "description": "Selects the stopword list for Swedish." - }, - { - "value": "thai", - "name": "Thai", - "description": "Selects the stopword list for Thai." - }, - { - "value": "turkish", - "name": "Turkish", - "description": "Selects the stopword list for Turkish." - } - ] - }, - "description": "Identifies a predefined list of language-specific stopwords." - }, - "StopwordsTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopwordsTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "stopwords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of stopwords. This property and the stopwords list property cannot both be set." - }, - "stopwordsList": { - "$ref": "#/definitions/StopwordsList", - "default": "english", - "description": "A predefined list of stopwords to use. This property and the stopwords property cannot both be set. Default is English." - }, - "ignoreCase": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false." - }, - "removeTrailing": { - "x-ms-client-name": "RemoveTrailingStopWords", - "type": "boolean", - "default": true, - "description": "A value indicating whether to ignore the last search term if it's a stop word. Default is true." - } - }, - "description": "Removes stop words from a token stream. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html" - } - }, - "SynonymTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.SynonymTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "synonyms": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of synonyms in following one of two formats: 1. incredible, unbelievable, fabulous => amazing - all terms on the left side of => symbol will be replaced with all terms on its right side; 2. incredible, unbelievable, fabulous, amazing - comma separated list of equivalent words. Set the expand option to change how this list is interpreted." - }, - "ignoreCase": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to case-fold input for matching. Default is false." - }, - "expand": { - "type": "boolean", - "default": true, - "description": "A value indicating whether all words in the list of synonyms (if => notation is not used) will map to one another. If true, all words in the list of synonyms (if => notation is not used) will map to one another. The following list: incredible, unbelievable, fabulous, amazing is equivalent to: incredible, unbelievable, fabulous, amazing => incredible, unbelievable, fabulous, amazing. If false, the following list: incredible, unbelievable, fabulous, amazing will be equivalent to: incredible, unbelievable, fabulous, amazing => incredible. Default is true." - } - }, - "required": [ - "synonyms" - ], - "description": "Matches single or multi-word synonyms in a token stream. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/synonym/SynonymFilter.html" - } - }, - "TruncateTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.TruncateTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "length": { - "type": "integer", - "format": "int32", - "default": 300, - "maximum": 300, - "description": "The length at which terms will be truncated. Default and maximum is 300." - } - }, - "description": "Truncates the terms to a specific length. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TruncateTokenFilter.html" - } - }, - "UniqueTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.UniqueTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "onlyOnSamePosition": { - "type": "boolean", - "default": false, - "description": "A value indicating whether to remove duplicates only at the same position. Default is false." - } - }, - "description": "Filters out tokens with same text as the previous token. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html" - } - }, - "WordDelimiterTokenFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.WordDelimiterTokenFilter", - "allOf": [ - { - "$ref": "#/definitions/TokenFilter" - } - ], - "properties": { - "generateWordParts": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to generate part words. If set, causes parts of words to be generated; for example \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true." - }, - "generateNumberParts": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to generate number subwords. Default is true." - }, - "catenateWords": { - "type": "boolean", - "default": false, - "description": "A value indicating whether maximum runs of word parts will be catenated. For example, if this is set to true, \"Azure-Search\" becomes \"AzureSearch\". Default is false." - }, - "catenateNumbers": { - "type": "boolean", - "default": false, - "description": "A value indicating whether maximum runs of number parts will be catenated. For example, if this is set to true, \"1-2\" becomes \"12\". Default is false." - }, - "catenateAll": { - "type": "boolean", - "default": false, - "description": "A value indicating whether all subword parts will be catenated. For example, if this is set to true, \"Azure-Search-1\" becomes \"AzureSearch1\". Default is false." - }, - "splitOnCaseChange": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to split words on caseChange. For example, if this is set to true, \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true." - }, - "preserveOriginal": { - "type": "boolean", - "default": false, - "description": "A value indicating whether original words will be preserved and added to the subword list. Default is false." - }, - "splitOnNumerics": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to split on numbers. For example, if this is set to true, \"Azure1Search\" becomes \"Azure\" \"1\" \"Search\". Default is true." - }, - "stemEnglishPossessive": { - "type": "boolean", - "default": true, - "description": "A value indicating whether to remove trailing \"'s\" for each subword. Default is true." - }, - "protectedWords": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of tokens to protect from being delimited." - } - }, - "description": "Splits words into subwords and performs optional transformations on subword groups. This token filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/WordDelimiterFilter.html" - } - }, - "CharFilter": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the char filter." - }, - "name": { - "type": "string", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference" - }, - "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters." - } - }, - "required": [ - "@odata.type", - "name" - ], - "description": "Base type for character filters.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "MappingCharFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.MappingCharFilter", - "allOf": [ - { - "$ref": "#/definitions/CharFilter" - } - ], - "properties": { - "mappings": { - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of mappings of the following format: \"a=>b\" (all occurrences of the character \"a\" will be replaced with character \"b\")." - } - }, - "required": [ - "mappings" - ], - "description": "A character filter that applies mappings defined with the mappings option. Matching is greedy (longest pattern matching at a given point wins). Replacement is allowed to be the empty string. This character filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/MappingCharFilter.html" - } - }, - "PatternReplaceCharFilter": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceCharFilter", - "allOf": [ - { - "$ref": "#/definitions/CharFilter" - } - ], - "properties": { - "pattern": { - "type": "string", - "description": "A regular expression pattern." - }, - "replacement": { - "type": "string", - "description": "The replacement text." - } - }, - "required": [ - "pattern", - "replacement" - ], - "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This character filter is implemented using Apache Lucene.", - "externalDocs": { - "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceCharFilter.html" - } - }, - "Similarity": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string" - } - }, - "required": [ - "@odata.type" - ], - "description": "Base type for similarity algorithms. Similarity algorithms are used to calculate scores that tie queries to documents. The higher the score, the more relevant the document is to that specific query. Those scores are used to rank the search results.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/index-ranking-similarity" - } - }, - "ClassicSimilarity": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.ClassicSimilarity", - "allOf": [ - { - "$ref": "#/definitions/Similarity" - } - ], - "description": "Legacy similarity algorithm which uses the Lucene TFIDFSimilarity implementation of TF-IDF. This variation of TF-IDF introduces static document length normalization as well as coordinating factors that penalize documents that only partially match the searched queries." - }, - "BM25Similarity": { - "x-ms-discriminator-value": "#Microsoft.Azure.Search.BM25Similarity", - "allOf": [ - { - "$ref": "#/definitions/Similarity" - } - ], - "properties": { - "k1": { - "type": "number", - "format": "double", - "description": "This property controls the scaling function between the term frequency of each matching terms and the final relevance score of a document-query pair. By default, a value of 1.2 is used. A value of 0.0 means the score does not scale with an increase in term frequency." - }, - "b": { - "type": "number", - "format": "double", - "description": "This property controls how the length of a document affects the relevance score. By default, a value of 0.75 is used. A value of 0.0 means no length normalization is applied, while a value of 1.0 means the score is fully normalized by the length of the document." - } - }, - "description": "Ranking function based on the Okapi BM25 similarity algorithm. BM25 is a TF-IDF-like algorithm that includes length normalization (controlled by the 'b' parameter) as well as term frequency saturation (controlled by the 'k1' parameter)." - }, - "DataSourceCredentials": { - "properties": { - "connectionString": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source" - }, - "type": "string", - "description": "The connection string for the datasource." - } - }, - "description": "Represents credentials that can be used to connect to a datasource." - }, - "SearchIndexerDataContainer": { - "properties": { - "name": { - "type": "string", - "description": "The name of the table or view (for Azure SQL data source) or collection (for CosmosDB data source) that will be indexed." - }, - "query": { - "type": "string", - "description": "A query that is applied to this data container. The syntax and meaning of this parameter is datasource-specific. Not supported by Azure SQL datasources." - } - }, - "required": [ - "name" - ], - "description": "Represents information about the entity (such as Azure SQL table or CosmosDB collection) that will be indexed." - }, - "DataChangeDetectionPolicy": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the data change detection policy." - } - }, - "required": [ - "@odata.type" - ], - "description": "Base type for data change detection policies." - }, - "HighWaterMarkChangeDetectionPolicy": { - "description": "Defines a data change detection policy that captures changes based on the value of a high water mark column.", - "x-ms-discriminator-value": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy", - "allOf": [ - { - "$ref": "#/definitions/DataChangeDetectionPolicy" - } - ], - "properties": { - "highWaterMarkColumnName": { - "type": "string", - "description": "The name of the high water mark column." - } - }, - "required": [ - "highWaterMarkColumnName" - ] - }, - "SqlIntegratedChangeTrackingPolicy": { - "description": "Defines a data change detection policy that captures changes using the Integrated Change Tracking feature of Azure SQL Database.", - "x-ms-discriminator-value": "#Microsoft.Azure.Search.SqlIntegratedChangeTrackingPolicy", - "allOf": [ - { - "$ref": "#/definitions/DataChangeDetectionPolicy" - } - ] - }, - "DataDeletionDetectionPolicy": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the data deletion detection policy." - } - }, - "required": [ - "@odata.type" - ], - "description": "Base type for data deletion detection policies." - }, - "SoftDeleteColumnDeletionDetectionPolicy": { - "description": "Defines a data deletion detection policy that implements a soft-deletion strategy. It determines whether an item should be deleted based on the value of a designated 'soft delete' column.", - "x-ms-discriminator-value": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy", - "allOf": [ - { - "$ref": "#/definitions/DataDeletionDetectionPolicy" - } - ], - "properties": { - "softDeleteColumnName": { - "type": "string", - "description": "The name of the column to use for soft-deletion detection." - }, - "softDeleteMarkerValue": { - "type": "string", - "description": "The marker value that identifies an item as deleted." - } - } - }, - "SearchIndexerDataSourceType": { - "type": "string", - "enum": [ - "azuresql", - "cosmosdb", - "azureblob", - "azuretable", - "mysql" - ], - "x-ms-enum": { - "name": "SearchIndexerDataSourceType", - "modelAsString": true, - "values": [ - { - "value": "azuresql", - "name": "AzureSql", - "description": "Indicates an Azure SQL datasource." - }, - { - "value": "cosmosdb", - "name": "CosmosDb", - "description": "Indicates a CosmosDB datasource." - }, - { - "value": "azureblob", - "name": "AzureBlob", - "description": "Indicates a Azure Blob datasource." - }, - { - "value": "azuretable", - "name": "AzureTable", - "description": "Indicates a Azure Table datasource." - }, - { - "value": "mysql", - "name": "MySql", - "description": "Indicates a MySql datasource." - } - ] - }, - "description": "Defines the type of a datasource." - }, - "SearchIndexerDataSource": { - "properties": { - "name": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - }, - "type": "string", - "description": "The name of the datasource." - }, - "description": { - "type": "string", - "description": "The description of the datasource." - }, - "type": { - "$ref": "#/definitions/SearchIndexerDataSourceType", - "description": "The type of the datasource." - }, - "credentials": { - "$ref": "#/definitions/DataSourceCredentials", - "description": "Credentials for the datasource." - }, - "container": { - "$ref": "#/definitions/SearchIndexerDataContainer", - "description": "The data container for the datasource." - }, - "dataChangeDetectionPolicy": { - "$ref": "#/definitions/DataChangeDetectionPolicy", - "description": "The data change detection policy for the datasource." - }, - "dataDeletionDetectionPolicy": { - "$ref": "#/definitions/DataDeletionDetectionPolicy", - "description": "The data deletion detection policy for the datasource." - }, - "@odata.etag": { - "x-ms-client-name": "ETag", - "type": "string", - "description": "The ETag of the data source." - } - }, - "required": [ - "name", - "type", - "credentials", - "container" - ], - "description": "Represents a datasource definition, which can be used to configure an indexer." - }, - "ListDataSourcesResult": { - "properties": { - "value": { - "x-ms-client-name": "DataSources", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndexerDataSource" - }, - "description": "The datasources in the Search service." - } - }, - "required": [ - "value" - ], - "description": "Response from a List Datasources request. If successful, it includes the full definitions of all datasources." - }, - "IndexingSchedule": { - "properties": { - "interval": { - "type": "string", - "format": "duration", - "description": "The interval of time between indexer executions." - }, - "startTime": { - "type": "string", - "format": "date-time", - "description": "The time when an indexer should start running." - } - }, - "required": [ - "interval" - ], - "description": "Represents a schedule for indexer execution." - }, - "IndexingParameters": { - "properties": { - "batchSize": { - "type": "integer", - "format": "int32", - "description": "The number of items that are read from the data source and indexed as a single batch in order to improve performance. The default depends on the data source type." - }, - "maxFailedItems": { - "type": "integer", - "format": "int32", - "default": 0, - "description": "The maximum number of items that can fail indexing for indexer execution to still be considered successful. -1 means no limit. Default is 0." - }, - "maxFailedItemsPerBatch": { - "type": "integer", - "format": "int32", - "default": 0, - "description": "The maximum number of items in a single batch that can fail indexing for the batch to still be considered successful. -1 means no limit. Default is 0." - }, - "configuration": { - "type": "object", - "additionalProperties": { - "type": "object" - }, - "description": "A dictionary of indexer-specific configuration properties. Each name is the name of a specific property. Each value must be of a primitive type." - } - }, - "description": "Represents parameters for indexer execution." - }, - "FieldMappingFunction": { - "properties": { - "name": { - "type": "string", - "description": "The name of the field mapping function." - }, - "parameters": { - "type": "object", - "additionalProperties": { - "type": "object" - }, - "description": "A dictionary of parameter name/value pairs to pass to the function. Each value must be of a primitive type." - } - }, - "required": [ - "name" - ], - "description": "Represents a function that transforms a value from a data source before indexing.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings" - } - }, - "FieldMapping": { - "properties": { - "sourceFieldName": { - "type": "string", - "description": "The name of the field in the data source." - }, - "targetFieldName": { - "type": "string", - "description": "The name of the target field in the index. Same as the source field name by default." - }, - "mappingFunction": { - "$ref": "#/definitions/FieldMappingFunction", - "description": "A function to apply to each source field value before indexing." - } - }, - "required": [ - "sourceFieldName" - ], - "description": "Defines a mapping between a field in a data source and a target field in an index.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings" - } - }, - "SearchIndexer": { - "properties": { - "name": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - }, - "type": "string", - "description": "The name of the indexer." - }, - "description": { - "type": "string", - "description": "The description of the indexer." - }, - "dataSourceName": { - "type": "string", - "description": "The name of the datasource from which this indexer reads data." - }, - "skillsetName": { - "type": "string", - "description": "The name of the skillset executing with this indexer." - }, - "targetIndexName": { - "type": "string", - "description": "The name of the index to which this indexer writes data." - }, - "schedule": { - "$ref": "#/definitions/IndexingSchedule", - "description": "The schedule for this indexer." - }, - "parameters": { - "$ref": "#/definitions/IndexingParameters", - "description": "Parameters for indexer execution." - }, - "fieldMappings": { - "type": "array", - "items": { - "$ref": "#/definitions/FieldMapping" - }, - "description": "Defines mappings between fields in the data source and corresponding target fields in the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings" - } - }, - "outputFieldMappings": { - "type": "array", - "items": { - "$ref": "#/definitions/FieldMapping" - }, - "description": "Output field mappings are applied after enrichment and immediately before indexing.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings" - } - }, - "disabled": { - "x-ms-client-name": "IsDisabled", - "type": "boolean", - "default": false, - "description": "A value indicating whether the indexer is disabled. Default is false." - }, - "@odata.etag": { - "x-ms-client-name": "ETag", - "type": "string", - "description": "The ETag of the indexer." - } - }, - "required": [ - "name", - "dataSourceName", - "targetIndexName" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations" - }, - "description": "Represents an indexer." - }, - "ListIndexersResult": { - "properties": { - "value": { - "x-ms-client-name": "Indexers", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndexer" - }, - "description": "The indexers in the Search service." - } - }, - "required": [ - "value" - ], - "description": "Response from a List Indexers request. If successful, it includes the full definitions of all indexers." - }, - "SearchIndexerError": { - "properties": { - "key": { - "type": "string", - "readOnly": true, - "description": "The key of the item for which indexing failed." - }, - "errorMessage": { - "type": "string", - "readOnly": true, - "description": "The message describing the error that occurred while processing the item." - }, - "statusCode": { - "type": "integer", - "format": "int32", - "x-nullable": false, - "readOnly": true, - "description": "The status code indicating why the indexing operation failed. Possible values include: 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy." - }, - "name": { - "type": "string", - "readOnly": true, - "description": "The name of the source at which the error originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available." - }, - "details": { - "type": "string", - "readOnly": true, - "description": "Additional, verbose details about the error to assist in debugging the indexer. This may not be always available." - }, - "documentationLink": { - "type": "string", - "readOnly": true, - "description": "A link to a troubleshooting guide for these classes of errors. This may not be always available." - } - }, - "required": [ - "errorMessage", - "statusCode" - ], - "description": "Represents an item- or document-level indexing error." - }, - "SearchIndexerWarning": { - "properties": { - "key": { - "type": "string", - "readOnly": true, - "description": "The key of the item which generated a warning." - }, - "message": { - "type": "string", - "readOnly": true, - "description": "The message describing the warning that occurred while processing the item." - }, - "name": { - "type": "string", - "readOnly": true, - "description": "The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available." - }, - "details": { - "type": "string", - "readOnly": true, - "description": "Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available." - }, - "documentationLink": { - "type": "string", - "readOnly": true, - "description": "A link to a troubleshooting guide for these classes of warnings. This may not be always available." - } - }, - "required": [ - "message" - ], - "description": "Represents an item-level warning." - }, - "IndexerExecutionResult": { - "properties": { - "status": { - "$ref": "#/definitions/IndexerExecutionStatus", - "readOnly": true, - "description": "The outcome of this indexer execution." - }, - "errorMessage": { - "type": "string", - "readOnly": true, - "description": "The error message indicating the top-level error, if any." - }, - "startTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The start time of this indexer execution." - }, - "endTime": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": "The end time of this indexer execution, if the execution has already completed." - }, - "errors": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndexerError" - }, - "description": "The item-level indexing errors." - }, - "warnings": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndexerWarning" - }, - "description": "The item-level indexing warnings." - }, - "itemsProcessed": { - "x-ms-client-name": "ItemCount", - "type": "integer", - "format": "int32", - "x-nullable": false, - "readOnly": true, - "description": "The number of items that were processed during this indexer execution. This includes both successfully processed items and items where indexing was attempted but failed." - }, - "itemsFailed": { - "x-ms-client-name": "FailedItemCount", - "type": "integer", - "format": "int32", - "x-nullable": false, - "readOnly": true, - "description": "The number of items that failed to be indexed during this indexer execution." - }, - "initialTrackingState": { - "type": "string", - "readOnly": true, - "description": "Change tracking state with which an indexer execution started." - }, - "finalTrackingState": { - "type": "string", - "readOnly": true, - "description": "Change tracking state with which an indexer execution finished." - } - }, - "required": [ - "status", - "errors", - "warnings", - "itemsProcessed", - "itemsFailed" - ], - "description": "Represents the result of an individual indexer execution." - }, - "IndexerExecutionStatus": { - "type": "string", - "enum": [ - "transientFailure", - "success", - "inProgress", - "reset" - ], - "x-ms-enum": { - "name": "IndexerExecutionStatus", - "modelAsString": false, - "values": [ - { - "value": "transientFailure", - "name": "TransientFailure", - "description": "An indexer invocation has failed, but the failure may be transient. Indexer invocations will continue per schedule." - }, - { - "value": "success", - "name": "Success", - "description": "Indexer execution completed successfully." - }, - { - "value": "inProgress", - "name": "InProgress", - "description": "Indexer execution is in progress." - }, - { - "value": "reset", - "name": "Reset", - "description": "Indexer has been reset." - } - ] - }, - "x-nullable": false, - "description": "Represents the status of an individual indexer execution." - }, - "SearchIndexerStatus": { - "properties": { - "status": { - "$ref": "#/definitions/IndexerStatus", - "readOnly": true, - "description": "Overall indexer status." - }, - "lastResult": { - "$ref": "#/definitions/IndexerExecutionResult", - "readOnly": true, - "description": "The result of the most recent or an in-progress indexer execution." - }, - "executionHistory": { - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/IndexerExecutionResult" - }, - "description": "History of the recent indexer executions, sorted in reverse chronological order." - }, - "limits": { - "$ref": "#/definitions/SearchIndexerLimits", - "readOnly": true, - "description": "The execution limits for the indexer." - } - }, - "required": [ - "status", - "executionHistory", - "limits" - ], - "description": "Represents the current status and execution history of an indexer." - }, - "IndexerStatus": { - "type": "string", - "enum": [ - "unknown", - "error", - "running" - ], - "x-ms-enum": { - "name": "IndexerStatus", - "modelAsString": false, - "values": [ - { - "value": "unknown", - "name": "Unknown", - "description": "Indicates that the indexer is in an unknown state." - }, - { - "value": "error", - "name": "Error", - "description": "Indicates that the indexer experienced an error that cannot be corrected without human intervention." - }, - { - "value": "running", - "name": "Running", - "description": "Indicates that the indexer is running normally." - } - ] - }, - "x-nullable": false, - "description": "Represents the overall indexer status." - }, - "SearchIndexerLimits": { - "properties": { - "maxRunTime": { - "type": "string", - "format": "duration", - "readOnly": true, - "description": "The maximum duration that the indexer is permitted to run for one execution." - }, - "maxDocumentExtractionSize": { - "type": "number", - "format": "int64", - "readOnly": true, - "description": "The maximum size of a document, in bytes, which will be considered valid for indexing." - }, - "maxDocumentContentCharactersToExtract": { - "type": "number", - "format": "int64", - "readOnly": true, - "description": "The maximum number of characters that will be extracted from a document picked up for indexing." - } - } - }, - "SearchField": { - "properties": { - "name": { - "type": "string", - "description": "The name of the field, which must be unique within the fields collection of the index or parent field.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - } - }, - "type": { - "$ref": "#/definitions/SearchFieldDataType", - "description": "The data type of the field.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/supported-data-types" - } - }, - "key": { - "type": "boolean", - "description": "A value indicating whether the field uniquely identifies documents in the index. Exactly one top-level field in each index must be chosen as the key field and it must be of type Edm.String. Key fields can be used to look up documents directly and update or delete specific documents. Default is false for simple fields and null for complex fields." - }, - "retrievable": { - "type": "boolean", - "description": "A value indicating whether the field can be returned in a search result. You can disable this option if you want to use a field (for example, margin) as a filter, sorting, or scoring mechanism but do not want the field to be visible to the end user. This property must be true for key fields, and it must be null for complex fields. This property can be changed on existing fields. Enabling this property does not cause any increase in index storage requirements. Default is true for simple fields and null for complex fields." - }, - "searchable": { - "type": "boolean", - "description": "A value indicating whether the field is full-text searchable. This means it will undergo analysis such as word-breaking during indexing. If you set a searchable field to a value like \"sunny day\", internally it will be split into the individual tokens \"sunny\" and \"day\". This enables full-text searches for these terms. Fields of type Edm.String or Collection(Edm.String) are searchable by default. This property must be false for simple fields of other non-string data types, and it must be null for complex fields. Note: searchable fields consume extra space in your index since Azure Cognitive Search will store an additional tokenized version of the field value for full-text searches. If you want to save space in your index and you don't need a field to be included in searches, set searchable to false." - }, - "filterable": { - "type": "boolean", - "description": "A value indicating whether to enable the field to be referenced in $filter queries. filterable differs from searchable in how strings are handled. Fields of type Edm.String or Collection(Edm.String) that are filterable do not undergo word-breaking, so comparisons are for exact matches only. For example, if you set such a field f to \"sunny day\", $filter=f eq 'sunny' will find no matches, but $filter=f eq 'sunny day' will. This property must be null for complex fields. Default is true for simple fields and null for complex fields." - }, - "sortable": { - "type": "boolean", - "description": "A value indicating whether to enable the field to be referenced in $orderby expressions. By default Azure Cognitive Search sorts results by score, but in many experiences users will want to sort by fields in the documents. A simple field can be sortable only if it is single-valued (it has a single value in the scope of the parent document). Simple collection fields cannot be sortable, since they are multi-valued. Simple sub-fields of complex collections are also multi-valued, and therefore cannot be sortable. This is true whether it's an immediate parent field, or an ancestor field, that's the complex collection. Complex fields cannot be sortable and the sortable property must be null for such fields. The default for sortable is true for single-valued simple fields, false for multi-valued simple fields, and null for complex fields." - }, - "facetable": { - "type": "boolean", - "description": "A value indicating whether to enable the field to be referenced in facet queries. Typically used in a presentation of search results that includes hit count by category (for example, search for digital cameras and see hits by brand, by megapixels, by price, and so on). This property must be null for complex fields. Fields of type Edm.GeographyPoint or Collection(Edm.GeographyPoint) cannot be facetable. Default is true for all other simple fields." - }, - "analyzer": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support" - }, - "$ref": "#/definitions/LexicalAnalyzerName", - "description": "The name of the analyzer to use for the field. This option can be used only with searchable fields and it can't be set together with either searchAnalyzer or indexAnalyzer. Once the analyzer is chosen, it cannot be changed for the field. Must be null for complex fields." - }, - "searchAnalyzer": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support" - }, - "$ref": "#/definitions/LexicalAnalyzerName", - "description": "The name of the analyzer used at search time for the field. This option can be used only with searchable fields. It must be set together with indexAnalyzer and it cannot be set together with the analyzer option. This property cannot be set to the name of a language analyzer; use the analyzer property instead if you need a language analyzer. This analyzer can be updated on an existing field. Must be null for complex fields." - }, - "indexAnalyzer": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support" - }, - "$ref": "#/definitions/LexicalAnalyzerName", - "description": "The name of the analyzer used at indexing time for the field. This option can be used only with searchable fields. It must be set together with searchAnalyzer and it cannot be set together with the analyzer option. This property cannot be set to the name of a language analyzer; use the analyzer property instead if you need a language analyzer. Once the analyzer is chosen, it cannot be changed for the field. Must be null for complex fields." - }, - "synonymMaps": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Synonym-Map-operations" - }, - "type": "array", - "items": { - "type": "string" - }, - "description": "A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are expanded at query-time using the rules in the synonym map. This attribute can be changed on existing fields. Must be null or an empty collection for complex fields." - }, - "fields": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchField" - }, - "description": "A list of sub-fields if this is a field of type Edm.ComplexType or Collection(Edm.ComplexType). Must be null or empty for simple fields." - } - }, - "required": [ - "name", - "type" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" - }, - "description": "Represents a field in an index definition, which describes the name, data type, and search behavior of a field." - }, - "TextWeights": { - "properties": { - "weights": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "double", - "x-nullable": false - }, - "description": "The dictionary of per-field weights to boost document scoring. The keys are field names and the values are the weights for each field." - } - }, - "required": [ - "weights" - ], - "description": "Defines weights on index fields for which matches should boost scoring in search queries." - }, - "ScoringFunction": { - "discriminator": "type", - "properties": { - "type": { - "type": "string", - "description": "Indicates the type of function to use. Valid values include magnitude, freshness, distance, and tag. The function type must be lower case." - }, - "fieldName": { - "type": "string", - "description": "The name of the field used as input to the scoring function." - }, - "boost": { - "type": "number", - "format": "double", - "description": "A multiplier for the raw score. Must be a positive number not equal to 1.0." - }, - "interpolation": { - "$ref": "#/definitions/ScoringFunctionInterpolation", - "description": "A value indicating how boosting will be interpolated across document scores; defaults to \"Linear\"." - } - }, - "required": [ - "type", - "fieldName", - "boost" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Base type for functions that can modify document scores during ranking." - }, - "DistanceScoringFunction": { - "x-ms-discriminator-value": "distance", - "allOf": [ - { - "$ref": "#/definitions/ScoringFunction" - } - ], - "properties": { - "distance": { - "x-ms-client-name": "Parameters", - "$ref": "#/definitions/DistanceScoringParameters", - "description": "Parameter values for the distance scoring function." - } - }, - "required": [ - "distance" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Defines a function that boosts scores based on distance from a geographic location." - }, - "DistanceScoringParameters": { - "properties": { - "referencePointParameter": { - "type": "string", - "description": "The name of the parameter passed in search queries to specify the reference location." - }, - "boostingDistance": { - "type": "number", - "format": "double", - "description": "The distance in kilometers from the reference location where the boosting range ends." - } - }, - "required": [ - "referencePointParameter", - "boostingDistance" - ], - "description": "Provides parameter values to a distance scoring function." - }, - "FreshnessScoringFunction": { - "x-ms-discriminator-value": "freshness", - "allOf": [ - { - "$ref": "#/definitions/ScoringFunction" - } - ], - "properties": { - "freshness": { - "x-ms-client-name": "Parameters", - "$ref": "#/definitions/FreshnessScoringParameters", - "description": "Parameter values for the freshness scoring function." - } - }, - "required": [ - "freshness" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Defines a function that boosts scores based on the value of a date-time field." - }, - "FreshnessScoringParameters": { - "properties": { - "boostingDuration": { - "type": "string", - "format": "duration", - "description": "The expiration period after which boosting will stop for a particular document." - } - }, - "required": [ - "boostingDuration" - ], - "description": "Provides parameter values to a freshness scoring function." - }, - "MagnitudeScoringFunction": { - "x-ms-discriminator-value": "magnitude", - "allOf": [ - { - "$ref": "#/definitions/ScoringFunction" - } - ], - "properties": { - "magnitude": { - "x-ms-client-name": "Parameters", - "$ref": "#/definitions/MagnitudeScoringParameters", - "description": "Parameter values for the magnitude scoring function." - } - }, - "required": [ - "magnitude" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Defines a function that boosts scores based on the magnitude of a numeric field." - }, - "MagnitudeScoringParameters": { - "properties": { - "boostingRangeStart": { - "type": "number", - "format": "double", - "description": "The field value at which boosting starts." - }, - "boostingRangeEnd": { - "type": "number", - "format": "double", - "description": "The field value at which boosting ends." - }, - "constantBoostBeyondRange": { - "x-ms-client-name": "ShouldBoostBeyondRangeByConstant", - "type": "boolean", - "description": "A value indicating whether to apply a constant boost for field values beyond the range end value; default is false." - } - }, - "required": [ - "boostingRangeStart", - "boostingRangeEnd" - ], - "description": "Provides parameter values to a magnitude scoring function." - }, - "TagScoringFunction": { - "x-ms-discriminator-value": "tag", - "allOf": [ - { - "$ref": "#/definitions/ScoringFunction" - } - ], - "properties": { - "tag": { - "x-ms-client-name": "Parameters", - "$ref": "#/definitions/TagScoringParameters", - "description": "Parameter values for the tag scoring function." - } - }, - "required": [ - "tag" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Defines a function that boosts scores of documents with string values matching a given list of tags." - }, - "TagScoringParameters": { - "properties": { - "tagsParameter": { - "type": "string", - "description": "The name of the parameter passed in search queries to specify the list of tags to compare against the target field." - } - }, - "required": [ - "tagsParameter" - ], - "description": "Provides parameter values to a tag scoring function." - }, - "ScoringFunctionInterpolation": { - "type": "string", - "enum": [ - "linear", - "constant", - "quadratic", - "logarithmic" - ], - "x-ms-enum": { - "name": "ScoringFunctionInterpolation", - "modelAsString": false, - "values": [ - { - "value": "linear", - "name": "Linear", - "description": "Boosts scores by a linearly decreasing amount. This is the default interpolation for scoring functions." - }, - { - "value": "constant", - "name": "Constant", - "description": "Boosts scores by a constant factor." - }, - { - "value": "quadratic", - "name": "Quadratic", - "description": "Boosts scores by an amount that decreases quadratically. Boosts decrease slowly for higher scores, and more quickly as the scores decrease. This interpolation option is not allowed in tag scoring functions." - }, - { - "value": "logarithmic", - "name": "Logarithmic", - "description": "Boosts scores by an amount that decreases logarithmically. Boosts decrease quickly for higher scores, and more slowly as the scores decrease. This interpolation option is not allowed in tag scoring functions." - } - ] - }, - "description": "Defines the function used to interpolate score boosting across a range of documents." - }, - "ScoringProfile": { - "properties": { - "name": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - }, - "type": "string", - "description": "The name of the scoring profile." - }, - "text": { - "x-ms-client-name": "TextWeights", - "$ref": "#/definitions/TextWeights", - "description": "Parameters that boost scoring based on text matches in certain index fields." - }, - "functions": { - "type": "array", - "items": { - "$ref": "#/definitions/ScoringFunction" - }, - "description": "The collection of functions that influence the scoring of documents." - }, - "functionAggregation": { - "$ref": "#/definitions/ScoringFunctionAggregation", - "description": "A value indicating how the results of individual scoring functions should be combined. Defaults to \"Sum\". Ignored if there are no scoring functions." - } - }, - "required": [ - "name" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index" - }, - "description": "Defines parameters for a search index that influence scoring in search queries." - }, - "ScoringFunctionAggregation": { - "type": "string", - "enum": [ - "sum", - "average", - "minimum", - "maximum", - "firstMatching" - ], - "x-ms-enum": { - "name": "ScoringFunctionAggregation", - "modelAsString": false, - "values": [ - { - "value": "sum", - "name": "Sum", - "description": "Boost scores by the sum of all scoring function results." - }, - { - "value": "average", - "name": "Average", - "description": "Boost scores by the average of all scoring function results." - }, - { - "value": "minimum", - "name": "Minimum", - "description": "Boost scores by the minimum of all scoring function results." - }, - { - "value": "maximum", - "name": "Maximum", - "description": "Boost scores by the maximum of all scoring function results." - }, - { - "value": "firstMatching", - "name": "FirstMatching", - "description": "Boost scores using the first applicable scoring function in the scoring profile." - } - ] - }, - "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile." - }, - "CorsOptions": { - "properties": { - "allowedOrigins": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of origins from which JavaScript code will be granted access to your index. Can contain a list of hosts of the form {protocol}://{fully-qualified-domain-name}[:{port#}], or a single '*' to allow all origins (not recommended)." - }, - "maxAgeInSeconds": { - "type": "integer", - "format": "int64", - "description": "The duration for which browsers should cache CORS preflight responses. Defaults to 5 minutes." - } - }, - "required": [ - "allowedOrigins" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index" - }, - "description": "Defines options to control Cross-Origin Resource Sharing (CORS) for an index." - }, - "Suggester": { - "properties": { - "name": { - "type": "string", - "description": "The name of the suggester." - }, - "searchMode": { - "type": "string", - "enum": [ - "analyzingInfixMatching" - ], - "x-ms-enum": { - "name": "SuggesterSearchMode", - "modelAsString": false, - "values": [ - { - "value": "analyzingInfixMatching", - "name": "AnalyzingInfixMatching", - "description": "Matches consecutive whole terms and prefixes in a field. For example, for the field 'The fastest brown fox', the queries 'fast' and 'fastest brow' would both match." - } - ] - }, - "description": "A value indicating the capabilities of the suggester." - }, - "sourceFields": { - "type": "array", - "items": { - "type": "string" - }, - "description": "The list of field names to which the suggester applies. Each field must be searchable." - } - }, - "required": [ - "name", - "searchMode", - "sourceFields" - ], - "description": "Defines how the Suggest API should apply to a group of fields in the index." - }, - "SearchIndex": { - "properties": { - "name": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - }, - "type": "string", - "description": "The name of the index." - }, - "fields": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchField" - }, - "description": "The fields of the index." - }, - "scoringProfiles": { - "type": "array", - "items": { - "$ref": "#/definitions/ScoringProfile" - }, - "description": "The scoring profiles for the index." - }, - "defaultScoringProfile": { - "type": "string", - "description": "The name of the scoring profile to use if none is specified in the query. If this property is not set and no scoring profile is specified in the query, then default scoring (tf-idf) will be used." - }, - "corsOptions": { - "$ref": "#/definitions/CorsOptions", - "description": "Options to control Cross-Origin Resource Sharing (CORS) for the index." - }, - "suggesters": { - "type": "array", - "items": { - "$ref": "#/definitions/Suggester" - }, - "description": "The suggesters for the index." - }, - "analyzers": { - "type": "array", - "items": { - "$ref": "#/definitions/LexicalAnalyzer" - }, - "description": "The analyzers for the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "tokenizers": { - "type": "array", - "items": { - "$ref": "#/definitions/LexicalTokenizer" - }, - "description": "The tokenizers for the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "tokenFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/TokenFilter" - }, - "description": "The token filters for the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "charFilters": { - "type": "array", - "items": { - "$ref": "#/definitions/CharFilter" - }, - "description": "The character filters for the index.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search" - } - }, - "encryptionKey": { - "$ref": "#/definitions/SearchResourceEncryptionKey", - "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.", - "externalDocs": { - "url": "https://aka.ms/azure-search-encryption-with-cmk" - } - }, - "similarity": { - "$ref": "#/definitions/Similarity", - "description": "The type of similarity algorithm to be used when scoring and ranking the documents matching a search query. The similarity algorithm can only be defined at index creation time and cannot be modified on existing indexes. If null, the ClassicSimilarity algorithm is used.", - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/index-ranking-similarity" - } - }, - "@odata.etag": { - "x-ms-client-name": "ETag", - "type": "string", - "description": "The ETag of the index." - } - }, - "required": [ - "name", - "fields" - ], - "description": "Represents a search index definition, which describes the fields and search behavior of an index." - }, - "GetIndexStatisticsResult": { - "properties": { - "documentCount": { - "type": "integer", - "format": "int64", - "x-nullable": false, - "readOnly": true, - "description": "The number of documents in the index." - }, - "storageSize": { - "type": "integer", - "format": "int64", - "x-nullable": false, - "readOnly": true, - "description": "The amount of storage in bytes consumed by the index." - } - }, - "required": [ - "documentCount", - "storageSize" - ], - "description": "Statistics for a given index. Statistics are collected periodically and are not guaranteed to always be up-to-date." - }, - "ListIndexesResult": { - "properties": { - "value": { - "x-ms-client-name": "Indexes", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndex" - }, - "description": "The indexes in the Search service." - } - }, - "required": [ - "value" - ], - "description": "Response from a List Indexes request. If successful, it includes the full definitions of all indexes." - }, - "SearchIndexerSkillset": { - "properties": { - "name": { - "type": "string", - "description": "The name of the skillset." - }, - "description": { - "type": "string", - "description": "The description of the skillset." - }, - "skills": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchIndexerSkill" - }, - "description": "A list of skills in the skillset." - }, - "cognitiveServices": { - "x-ms-client-name": "CognitiveServicesAccount", - "$ref": "#/definitions/CognitiveServicesAccount", - "description": "Details about cognitive services to be used when running skills." - }, - "@odata.etag": { - "x-ms-client-name": "ETag", - "type": "string", - "description": "The ETag of the skillset." - } - }, - "required": [ - "name", - "skills" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob" - }, - "description": "A list of skills." - }, - "CognitiveServicesAccount": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the cognitive service resource attached to a skillset." - }, - "description": { - "type": "string", - "description": "Description of the cognitive service resource attached to a skillset." - } - }, - "required": [ - "@odata.type" - ], - "description": "Base type for describing any cognitive service resource attached to a skillset." - }, - "DefaultCognitiveServicesAccount": { - "description": "An empty object that represents the default cognitive service resource for a skillset.", - "x-ms-discriminator-value": "#Microsoft.Azure.Search.DefaultCognitiveServices", - "allOf": [ - { - "$ref": "#/definitions/CognitiveServicesAccount" - } - ] - }, - "CognitiveServicesAccountKey": { - "description": "A cognitive service resource provisioned with a key that is attached to a skillset.", - "x-ms-discriminator-value": "#Microsoft.Azure.Search.CognitiveServicesByKey", - "allOf": [ - { - "$ref": "#/definitions/CognitiveServicesAccount" - } - ], - "properties": { - "key": { - "type": "string", - "description": "The key used to provision the cognitive service resource attached to a skillset." - } - }, - "required": [ - "key" - ] - }, - "SearchIndexerSkill": { - "discriminator": "@odata.type", - "properties": { - "@odata.type": { - "type": "string", - "description": "Identifies the concrete type of the skill." - }, - "name": { - "type": "string", - "description": "The name of the skill which uniquely identifies it within the skillset. A skill with no name defined will be given a default name of its 1-based index in the skills array, prefixed with the character '#'." - }, - "description": { - "type": "string", - "description": "The description of the skill which describes the inputs, outputs, and usage of the skill." - }, - "context": { - "type": "string", - "description": "Represents the level at which operations take place, such as the document root or document content (for example, /document or /document/content). The default is /document." - }, - "inputs": { - "type": "array", - "items": { - "$ref": "#/definitions/InputFieldMappingEntry" - }, - "description": "Inputs of the skills could be a column in the source data set, or the output of an upstream skill." - }, - "outputs": { - "type": "array", - "items": { - "$ref": "#/definitions/OutputFieldMappingEntry" - }, - "description": "The output of a skill is either a field in a search index, or a value that can be consumed as an input by another skill." - } - }, - "required": [ - "@odata.type", - "inputs", - "outputs" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-predefined-skills" - }, - "description": "Base type for skills." - }, - "InputFieldMappingEntry": { - "properties": { - "name": { - "type": "string", - "description": "The name of the input." - }, - "source": { - "type": "string", - "description": "The source of the input." - }, - "sourceContext": { - "type": "string", - "description": "The source context used for selecting recursive inputs." - }, - "inputs": { - "type": "array", - "items": { - "$ref": "#/definitions/InputFieldMappingEntry" - }, - "description": "The recursive inputs used when creating a complex type." - } - }, - "required": [ - "name" - ], - "description": "Input field mapping for a skill." - }, - "OutputFieldMappingEntry": { - "properties": { - "name": { - "type": "string", - "description": "The name of the output defined by the skill." - }, - "targetName": { - "type": "string", - "description": "The target name of the output. It is optional and default to name." - } - }, - "required": [ - "name" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/naming-rules" - }, - "description": "Output field mapping for a skill." - }, - "ConditionalSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Util.ConditionalSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-conditional" - }, - "description": "A skill that enables scenarios that require a Boolean operation to determine the data to assign to an output." - }, - "KeyPhraseExtractionSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultLanguageCode": { - "$ref": "#/definitions/KeyPhraseExtractionSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - }, - "maxKeyPhraseCount": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "A number indicating how many key phrases to return. If absent, all identified key phrases will be returned." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-keyphrases" - }, - "description": "A skill that uses text analytics for key phrase extraction." - }, - "OcrSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Vision.OcrSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultLanguageCode": { - "$ref": "#/definitions/OcrSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - }, - "detectOrientation": { - "x-ms-client-name": "ShouldDetectOrientation", - "type": "boolean", - "default": false, - "description": "A value indicating to turn orientation detection on or not. Default is false." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-ocr" - }, - "description": "A skill that extracts text from image files." - }, - "ImageAnalysisSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Vision.ImageAnalysisSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultLanguageCode": { - "$ref": "#/definitions/ImageAnalysisSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - }, - "visualFeatures": { - "type": "array", - "items": { - "$ref": "#/definitions/VisualFeature", - "x-nullable": false - }, - "description": "A list of visual features." - }, - "details": { - "type": "array", - "items": { - "$ref": "#/definitions/ImageDetail", - "x-nullable": false - }, - "description": "A string indicating which domain-specific details to return." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-image-analysis" - }, - "description": "A skill that analyzes image files. It extracts a rich set of visual features based on the image content." - }, - "LanguageDetectionSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.LanguageDetectionSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-language-detection" - }, - "description": "A skill that detects the language of input text and reports a single language code for every document submitted on the request. The language code is paired with a score indicating the confidence of the analysis." - }, - "ShaperSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Util.ShaperSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-shaper" - }, - "description": "A skill for reshaping the outputs. It creates a complex type to support composite fields (also known as multipart fields)." - }, - "MergeSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.MergeSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "insertPreTag": { - "type": "string", - "default": " ", - "description": "The tag indicates the start of the merged text. By default, the tag is an empty space." - }, - "insertPostTag": { - "type": "string", - "default": " ", - "description": "The tag indicates the end of the merged text. By default, the tag is an empty space." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textmerger" - }, - "description": "A skill for merging two or more strings into a single unified string, with an optional user-defined delimiter separating each component part." - }, - "EntityRecognitionSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.EntityRecognitionSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "categories": { - "type": "array", - "items": { - "$ref": "#/definitions/EntityCategory", - "x-nullable": false - }, - "description": "A list of entity categories that should be extracted." - }, - "defaultLanguageCode": { - "$ref": "#/definitions/EntityRecognitionSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - }, - "includeTypelessEntities": { - "type": "boolean", - "x-nullable": true, - "description": "Determines whether or not to include entities which are well known but don't conform to a pre-defined type. If this configuration is not set (default), set to null or set to false, entities which don't conform to one of the pre-defined types will not be surfaced." - }, - "minimumPrecision": { - "type": "number", - "format": "double", - "x-nullable": true, - "description": "A value between 0 and 1 that be used to only include entities whose confidence score is greater than the value specified. If not set (default), or if explicitly set to null, all entities will be included." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-entity-recognition" - }, - "description": "Text analytics entity recognition." - }, - "SentimentSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.SentimentSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultLanguageCode": { - "$ref": "#/definitions/SentimentSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-sentiment" - }, - "description": "Text analytics positive-negative sentiment analysis, scored as a floating point value in a range of zero to 1." - }, - "SplitSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.SplitSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultLanguageCode": { - "$ref": "#/definitions/SplitSkillLanguage", - "description": "A value indicating which language code to use. Default is en." - }, - "textSplitMode": { - "$ref": "#/definitions/TextSplitMode", - "x-nullable": false, - "description": "A value indicating which split mode to perform." - }, - "maximumPageLength": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The desired maximum page length. Default is 10000." - } - }, - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textsplit" - }, - "description": "A skill to split a string into chunks of text." - }, - "TextTranslationSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Text.TranslationSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "defaultToLanguageCode": { - "$ref": "#/definitions/TextTranslationSkillLanguage", - "description": "The language code to translate documents into for documents that don't specify the to language explicitly. " - }, - "defaultFromLanguageCode": { - "$ref": "#/definitions/TextTranslationSkillLanguage", - "description": "The language code to translate documents from for documents that don't specify the from language explicitly." - }, - "suggestedFrom": { - "$ref": "#/definitions/TextTranslationSkillLanguage", - "description": "The language code to translate documents from when neither the fromLanguageCode input nor the defaultFromLanguageCode parameter are provided, and the automatic language detection is unsuccessful. Default is en." - } - }, - "required": [ - "defaultToLanguageCode" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-text-translation" - }, - "description": "A skill to translate text from one language to another." - }, - "WebApiSkill": { - "x-ms-discriminator-value": "#Microsoft.Skills.Custom.WebApiSkill", - "allOf": [ - { - "$ref": "#/definitions/SearchIndexerSkill" - } - ], - "properties": { - "uri": { - "type": "string", - "description": "The url for the Web API." - }, - "httpHeaders": { - "$ref": "#/definitions/WebApiHttpHeaders", - "description": "The headers required to make the http request." - }, - "httpMethod": { - "type": "string", - "description": "The method for the http request." - }, - "timeout": { - "type": "string", - "format": "duration", - "description": "The desired timeout for the request. Default is 30 seconds." - }, - "batchSize": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The desired batch size which indicates number of documents." - }, - "degreeOfParallelism": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "If set, the number of parallel calls that can be made to the Web API." - } - }, - "required": [ - "uri" - ], - "externalDocs": { - "url": "https://docs.microsoft.com/azure/search/cognitive-search-custom-skill-web-api" - }, - "description": "A skill that can call a Web API endpoint, allowing you to extend a skillset by having it call your custom code." - }, - "WebApiHttpHeaders": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "A dictionary of http request headers." - }, - "ListSkillsetsResult": { - "properties": { - "value": { - "x-ms-client-name": "Skillsets", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SearchIndexerSkillset" - }, - "description": "The skillsets defined in the Search service." - } - }, - "required": [ - "value" - ], - "description": "Response from a list skillset request. If successful, it includes the full definitions of all skillsets." - }, - "TextSplitMode": { - "type": "string", - "enum": [ - "pages", - "sentences" - ], - "x-ms-enum": { - "name": "TextSplitMode", - "modelAsString": true, - "values": [ - { - "value": "pages", - "name": "Pages", - "description": "Split the text into individual pages." - }, - { - "value": "sentences", - "name": "Sentences", - "description": "Split the text into individual sentences." - } - ] - }, - "description": "A value indicating which split mode to perform." - }, - "VisualFeature": { - "type": "string", - "enum": [ - "adult", - "brands", - "categories", - "description", - "faces", - "objects", - "tags" - ], - "x-ms-enum": { - "name": "VisualFeature", - "modelAsString": true, - "values": [ - { - "value": "adult", - "name": "Adult", - "description": "Visual features recognized as adult persons." - }, - { - "value": "brands", - "name": "Brands", - "description": "Visual features recognized as commercial brands." - }, - { - "value": "categories", - "name": "Categories", - "description": "Categories." - }, - { - "value": "description", - "name": "Description", - "description": "Description." - }, - { - "value": "faces", - "name": "Faces", - "description": "Visual features recognized as people faces." - }, - { - "value": "objects", - "name": "Objects", - "description": "Visual features recognized as objects." - }, - { - "value": "tags", - "name": "Tags", - "description": "Tags." - } - ] - }, - "description": "The strings indicating what visual feature types to return." - }, - "ImageDetail": { - "type": "string", - "enum": [ - "celebrities", - "landmarks" - ], - "x-ms-enum": { - "name": "ImageDetail", - "modelAsString": true, - "values": [ - { - "value": "celebrities", - "name": "Celebrities", - "description": "Details recognized as celebrities." - }, - { - "value": "landmarks", - "name": "Landmarks", - "description": "Details recognized as landmarks." - } - ] - }, - "description": "A string indicating which domain-specific details to return." - }, - "EntityCategory": { - "type": "string", - "enum": [ - "location", - "organization", - "person", - "quantity", - "datetime", - "url", - "email" - ], - "x-ms-enum": { - "name": "EntityCategory", - "modelAsString": true, - "values": [ - { - "value": "location", - "name": "Location", - "description": "Entities describing a physical location." - }, - { - "value": "organization", - "name": "Organization", - "description": "Entities describing an organization." - }, - { - "value": "person", - "name": "Person", - "description": "Entities describing a person." - }, - { - "value": "quantity", - "name": "Quantity", - "description": "Entities describing a quantity." - }, - { - "value": "datetime", - "name": "Datetime", - "description": "Entities describing a date and time." - }, - { - "value": "url", - "name": "Url", - "description": "Entities describing a URL." - }, - { - "value": "email", - "name": "Email", - "description": "Entities describing an email address." - } - ] - }, - "description": "A string indicating what entity categories to return." - }, - "SentimentSkillLanguage": { - "type": "string", - "enum": [ - "da", - "nl", - "en", - "fi", - "fr", - "de", - "el", - "it", - "no", - "pl", - "pt-PT", - "ru", - "es", - "sv", - "tr" - ], - "x-ms-enum": { - "name": "SentimentSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "da", - "description": "Danish" - }, - { - "value": "nl", - "description": "Dutch" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "el", - "description": "Greek" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "no", - "description": "Norwegian (Bokmaal)" - }, - { - "value": "pl", - "description": "Polish" - }, - { - "value": "pt-PT", - "description": "Portuguese (Portugal)" - }, - { - "value": "ru", - "description": "Russian" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "sv", - "description": "Swedish" - }, - { - "value": "tr", - "description": "Turkish" - } - ] - }, - "description": "The language codes supported for input text by SentimentSkill." - }, - "KeyPhraseExtractionSkillLanguage": { - "type": "string", - "enum": [ - "da", - "nl", - "en", - "fi", - "fr", - "de", - "it", - "ja", - "ko", - "no", - "pl", - "pt-PT", - "pt-BR", - "ru", - "es", - "sv" - ], - "x-ms-enum": { - "name": "KeyPhraseExtractionSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "da", - "description": "Danish" - }, - { - "value": "nl", - "description": "Dutch" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "ja", - "description": "Japanese" - }, - { - "value": "ko", - "description": "Korean" - }, - { - "value": "no", - "description": "Norwegian (Bokmaal)" - }, - { - "value": "pl", - "description": "Polish" - }, - { - "value": "pt-PT", - "description": "Portuguese (Portugal)" - }, - { - "value": "pt-BR", - "description": "Portuguese (Brazil)" - }, - { - "value": "ru", - "description": "Russian" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "sv", - "description": "Swedish" - } - ] - }, - "description": "The language codes supported for input text by KeyPhraseExtractionSkill." - }, - "OcrSkillLanguage": { - "type": "string", - "enum": [ - "zh-Hans", - "zh-Hant", - "cs", - "da", - "nl", - "en", - "fi", - "fr", - "de", - "el", - "hu", - "it", - "ja", - "ko", - "nb", - "pl", - "pt", - "ru", - "es", - "sv", - "tr", - "ar", - "ro", - "sr-Cyrl", - "sr-Latn", - "sk" - ], - "x-ms-enum": { - "name": "OcrSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "zh-Hans", - "description": "Chinese-Simplified" - }, - { - "value": "zh-Hant", - "description": "Chinese-Traditional" - }, - { - "value": "cs", - "description": "Czech" - }, - { - "value": "da", - "description": "Danish" - }, - { - "value": "nl", - "description": "Dutch" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "el", - "description": "Greek" - }, - { - "value": "hu", - "description": "Hungarian" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "ja", - "description": "Japanese" - }, - { - "value": "ko", - "description": "Korean" - }, - { - "value": "nb", - "description": "Norwegian (Bokmaal)" - }, - { - "value": "pl", - "description": "Polish" - }, - { - "value": "pt", - "description": "Portuguese" - }, - { - "value": "ru", - "description": "Russian" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "sv", - "description": "Swedish" - }, - { - "value": "tr", - "description": "Turkish" - }, - { - "value": "ar", - "description": "Arabic" - }, - { - "value": "ro", - "description": "Romanian" - }, - { - "value": "sr-Cyrl", - "description": "Serbian (Cyrillic, Serbia)" - }, - { - "value": "sr-Latn", - "description": "Serbian (Latin, Serbia)" - }, - { - "value": "sk", - "description": "Slovak" - } - ] - }, - "description": "The language codes supported for input by OcrSkill." - }, - "SplitSkillLanguage": { - "type": "string", - "enum": [ - "da", - "de", - "en", - "es", - "fi", - "fr", - "it", - "ko", - "pt" - ], - "x-ms-enum": { - "name": "SplitSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "da", - "description": "Danish" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "ko", - "description": "Korean" - }, - { - "value": "pt", - "description": "Portuguese" - } - ] - }, - "description": "The language codes supported for input text by SplitSkill." - }, - "EntityRecognitionSkillLanguage": { - "type": "string", - "enum": [ - "ar", - "cs", - "zh-Hans", - "zh-Hant", - "da", - "nl", - "en", - "fi", - "fr", - "de", - "el", - "hu", - "it", - "ja", - "ko", - "no", - "pl", - "pt-PT", - "pt-BR", - "ru", - "es", - "sv", - "tr" - ], - "x-ms-enum": { - "name": "EntityRecognitionSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "ar", - "description": "Arabic" - }, - { - "value": "cs", - "description": "Czech" - }, - { - "value": "zh-Hans", - "description": "Chinese-Simplified" - }, - { - "value": "zh-Hant", - "description": "Chinese-Traditional" - }, - { - "value": "da", - "description": "Danish" - }, - { - "value": "nl", - "description": "Dutch" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "el", - "description": "Greek" - }, - { - "value": "hu", - "description": "Hungarian" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "ja", - "description": "Japanese" - }, - { - "value": "ko", - "description": "Korean" - }, - { - "value": "no", - "description": "Norwegian (Bokmaal)" - }, - { - "value": "pl", - "description": "Polish" - }, - { - "value": "pt-PT", - "description": "Portuguese (Portugal)" - }, - { - "value": "pt-BR", - "description": "Portuguese (Brazil)" - }, - { - "value": "ru", - "description": "Russian" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "sv", - "description": "Swedish" - }, - { - "value": "tr", - "description": "Turkish" - } - ] - }, - "description": "The language codes supported for input text by EntityRecognitionSkill." - }, - "TextTranslationSkillLanguage": { - "type": "string", - "enum": [ - "af", - "ar", - "bn", - "bs", - "bg", - "yue", - "ca", - "zh-Hans", - "zh-Hant", - "hr", - "cs", - "da", - "nl", - "en", - "et", - "fj", - "fil", - "fi", - "fr", - "de", - "el", - "ht", - "he", - "hi", - "mww", - "hu", - "is", - "id", - "it", - "ja", - "sw", - "tlh", - "ko", - "lv", - "lt", - "mg", - "ms", - "mt", - "nb", - "fa", - "pl", - "pt", - "otq", - "ro", - "ru", - "sm", - "sr-Cyrl", - "sr-Latn", - "sk", - "sl", - "es", - "sv", - "ty", - "ta", - "te", - "th", - "to", - "tr", - "uk", - "ur", - "vi", - "cy", - "yua" - ], - "x-ms-enum": { - "name": "TextTranslationSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "af", - "description": "Afrikaans" - }, - { - "value": "ar", - "description": "Arabic" - }, - { - "value": "bn", - "description": "Bangla" - }, - { - "value": "bs", - "description": "Bosnian (Latin)" - }, - { - "value": "bg", - "description": "Bulgarian" - }, - { - "value": "yue", - "description": "Cantonese (Traditional)" - }, - { - "value": "ca", - "description": "Catalan" - }, - { - "value": "zh-Hans", - "description": "Chinese Simplified" - }, - { - "value": "zh-Hant", - "description": "Chinese Traditional" - }, - { - "value": "hr", - "description": "Croatian" - }, - { - "value": "cs", - "description": "Czech" - }, - { - "value": "da", - "description": "Danish" - }, - { - "value": "nl", - "description": "Dutch" - }, - { - "value": "en", - "description": "English" - }, - { - "value": "et", - "description": "Estonian" - }, - { - "value": "fj", - "description": "Fijian" - }, - { - "value": "fil", - "description": "Filipino" - }, - { - "value": "fi", - "description": "Finnish" - }, - { - "value": "fr", - "description": "French" - }, - { - "value": "de", - "description": "German" - }, - { - "value": "el", - "description": "Greek" - }, - { - "value": "ht", - "description": "Haitian Creole" - }, - { - "value": "he", - "description": "Hebrew" - }, - { - "value": "hi", - "description": "Hindi" - }, - { - "value": "mww", - "description": "Hmong Daw" - }, - { - "value": "hu", - "description": "Hungarian" - }, - { - "value": "is", - "description": "Icelandic" - }, - { - "value": "id", - "description": "Indonesian" - }, - { - "value": "it", - "description": "Italian" - }, - { - "value": "ja", - "description": "Japanese" - }, - { - "value": "sw", - "description": "Kiswahili" - }, - { - "value": "tlh", - "description": "Klingon" - }, - { - "value": "ko", - "description": "Korean" - }, - { - "value": "lv", - "description": "Latvian" - }, - { - "value": "lt", - "description": "Lithuanian" - }, - { - "value": "mg", - "description": "Malagasy" - }, - { - "value": "ms", - "description": "Malay" - }, - { - "value": "mt", - "description": "Maltese" - }, - { - "value": "nb", - "description": "Norwegian" - }, - { - "value": "fa", - "description": "Persian" - }, - { - "value": "pl", - "description": "Polish" - }, - { - "value": "pt", - "description": "Portuguese" - }, - { - "value": "otq", - "description": "Queretaro Otomi" - }, - { - "value": "ro", - "description": "Romanian" - }, - { - "value": "ru", - "description": "Russian" - }, - { - "value": "sm", - "description": "Samoan" - }, - { - "value": "sr-Cyrl", - "description": "Serbian (Cyrillic)" - }, - { - "value": "sr-Latn", - "description": "Serbian (Latin)" - }, - { - "value": "sk", - "description": "Slovak" - }, - { - "value": "sl", - "description": "Slovenian" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "sv", - "description": "Swedish" - }, - { - "value": "ty", - "description": "Tahitian" - }, - { - "value": "ta", - "description": "Tamil" - }, - { - "value": "te", - "description": "Telugu" - }, - { - "value": "th", - "description": "Thai" - }, - { - "value": "to", - "description": "Tongan" - }, - { - "value": "tr", - "description": "Turkish" - }, - { - "value": "uk", - "description": "Ukrainian" - }, - { - "value": "ur", - "description": "Urdu" - }, - { - "value": "vi", - "description": "Vietnamese" - }, - { - "value": "cy", - "description": "Welsh" - }, - { - "value": "yua", - "description": "Yucatec Maya" - } - ] - }, - "description": "The language codes supported for input text by TextTranslationSkill." - }, - "ImageAnalysisSkillLanguage": { - "type": "string", - "enum": [ - "en", - "es", - "ja", - "pt", - "zh" - ], - "x-ms-enum": { - "name": "ImageAnalysisSkillLanguage", - "modelAsString": true, - "values": [ - { - "value": "en", - "description": "English" - }, - { - "value": "es", - "description": "Spanish" - }, - { - "value": "ja", - "description": "Japanese" - }, - { - "value": "pt", - "description": "Portuguese" - }, - { - "value": "zh", - "description": "Chinese" - } - ] - }, - "description": "The language codes supported for input by ImageAnalysisSkill." - }, - "SynonymMap": { - "properties": { - "name": { - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules" - }, - "type": "string", - "description": "The name of the synonym map." - }, - "format": { - "type": "string", - "enum": [ - "solr" - ], - "x-ms-enum": { - "name": "SynonymMapFormat", - "modelAsString": false, - "values": [ - { - "value": "solr", - "name": "Solr", - "description": "Selects the SOLR format for synonym maps." - } - ] - }, - "description": "The format of the synonym map. Only the 'solr' format is currently supported." - }, - "synonyms": { - "type": "string", - "description": "A series of synonym rules in the specified synonym map format. The rules must be separated by newlines.", - "externalDocs": { - "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map#SynonymMapFormat" - } - }, - "encryptionKey": { - "$ref": "#/definitions/SearchResourceEncryptionKey", - "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.", - "externalDocs": { - "url": "https://aka.ms/azure-search-encryption-with-cmk" - } - }, - "@odata.etag": { - "x-ms-client-name": "ETag", - "type": "string", - "description": "The ETag of the synonym map." - } - }, - "required": [ - "name", - "format", - "synonyms" - ], - "description": "Represents a synonym map definition." - }, - "ListSynonymMapsResult": { - "properties": { - "value": { - "x-ms-client-name": "SynonymMaps", - "type": "array", - "readOnly": true, - "items": { - "$ref": "#/definitions/SynonymMap" - }, - "description": "The synonym maps in the Search service." - } - }, - "required": [ - "value" - ], - "description": "Response from a List SynonymMaps request. If successful, it includes the full definitions of all synonym maps." - }, - "SearchResourceEncryptionKey": { - "properties": { - "keyVaultKeyName": { - "x-ms-client-name": "keyName", - "type": "string", - "description": "The name of your Azure Key Vault key to be used to encrypt your data at rest." - }, - "keyVaultKeyVersion": { - "x-ms-client-name": "keyVersion", - "type": "string", - "description": "The version of your Azure Key Vault key to be used to encrypt your data at rest." - }, - "keyVaultUri": { - "x-ms-client-name": "vaultUri", - "type": "string", - "description": "The URI of your Azure Key Vault, also referred to as DNS name, that contains the key to be used to encrypt your data at rest. An example URI might be https://my-keyvault-name.vault.azure.net." - }, - "accessCredentials": { - "$ref": "#/definitions/AzureActiveDirectoryApplicationCredentials", - "description": "Optional Azure Active Directory credentials used for accessing your Azure Key Vault. Not required if using managed identity instead.", - "externalDocs": { - "url": "https://aka.ms/azure-search-msi" - } - } - }, - "required": [ - "keyVaultKeyName", - "keyVaultKeyVersion", - "keyVaultUri" - ], - "description": "A customer-managed encryption key in Azure Key Vault. Keys that you create and manage can be used to encrypt or decrypt data-at-rest in Azure Cognitive Search, such as indexes and synonym maps." - }, - "AzureActiveDirectoryApplicationCredentials": { - "properties": { - "applicationId": { - "type": "string", - "description": "An AAD Application ID that was granted the required access permissions to the Azure Key Vault that is to be used when encrypting your data at rest. The Application ID should not be confused with the Object ID for your AAD Application." - }, - "applicationSecret": { - "type": "string", - "description": "The authentication key of the specified AAD application." - } - }, - "required": [ - "applicationId" - ], - "description": "Credentials of a registered application created for your search service, used for authenticated access to the encryption keys stored in Azure Key Vault." - }, - "ServiceStatistics": { - "properties": { - "counters": { - "$ref": "#/definitions/ServiceCounters", - "description": "Service level resource counters." - }, - "limits": { - "$ref": "#/definitions/ServiceLimits", - "description": "Service level general limits." - } - }, - "required": [ - "counters", - "limits" - ], - "description": "Response from a get service statistics request. If successful, it includes service level counters and limits." - }, - "ServiceCounters": { - "properties": { - "documentCount": { - "x-ms-client-name": "documentCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of documents across all indexes in the service." - }, - "indexesCount": { - "x-ms-client-name": "indexCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of indexes." - }, - "indexersCount": { - "x-ms-client-name": "indexerCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of indexers." - }, - "dataSourcesCount": { - "x-ms-client-name": "dataSourceCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of data sources." - }, - "storageSize": { - "x-ms-client-name": "storageSizeCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total size of used storage in bytes." - }, - "synonymMaps": { - "x-ms-client-name": "synonymMapCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of synonym maps." - }, - "skillsetCount": { - "x-ms-client-name": "skillsetCounter", - "$ref": "#/definitions/ResourceCounter", - "description": "Total number of skillsets." - } - }, - "required": [ - "documentCount", - "indexesCount", - "indexersCount", - "dataSourcesCount", - "storageSize", - "synonymMaps", - "skillsetCount" - ], - "description": "Represents service-level resource counters and quotas." - }, - "ServiceLimits": { - "properties": { - "maxFieldsPerIndex": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The maximum allowed fields per index." - }, - "maxFieldNestingDepthPerIndex": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The maximum depth which you can nest sub-fields in an index, including the top-level complex field. For example, a/b/c has a nesting depth of 3." - }, - "maxComplexCollectionFieldsPerIndex": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The maximum number of fields of type Collection(Edm.ComplexType) allowed in an index." - }, - "maxComplexObjectsInCollectionsPerDocument": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The maximum number of objects in complex collections allowed per document." - } - }, - "description": "Represents various service level limits." - }, - "ResourceCounter": { - "properties": { - "usage": { - "type": "integer", - "format": "int64", - "x-nullable": false, - "description": "The resource usage amount." - }, - "quota": { - "type": "integer", - "format": "int64", - "x-nullable": true, - "description": "The resource amount quota." - } - }, - "required": [ - "usage" - ], - "description": "Represents a resource's usage and quota." - }, - "SearchError": { - "properties": { - "code": { - "type": "string", - "readOnly": true, - "description": "One of a server-defined set of error codes." - }, - "message": { - "type": "string", - "readOnly": true, - "description": "A human-readable representation of the error." - }, - "details": { - "type": "array", - "items": { - "$ref": "#/definitions/SearchError" - }, - "readOnly": true, - "description": "An array of details about specific errors that led to this reported error." - } - }, - "required": [ - "message" - ], - "description": "Describes an error condition for the Azure Cognitive Search API." - } - }, - "parameters": { - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - }, - "ClientRequestIdParameter": { - "name": "x-ms-client-request-id", - "in": "header", - "required": false, - "type": "string", - "format": "uuid", - "description": "The tracking ID sent with the request to help with debugging.", - "x-ms-client-request-id": true, - "x-ms-parameter-grouping": { - "name": "request-options" - }, - "x-ms-parameter-location": "method" - }, - "IfMatchParameter": { - "name": "If-Match", - "in": "header", - "required": false, - "type": "string", - "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.", - "x-ms-parameter-location": "method" - }, - "IfNoneMatchParameter": { - "name": "If-None-Match", - "in": "header", - "required": false, - "type": "string", - "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.", - "x-ms-parameter-location": "method" - }, - "PreferHeaderParameter": { - "name": "Prefer", - "in": "header", - "required": true, - "type": "string", - "enum": [ - "return=representation" - ], - "description": "For HTTP PUT requests, instructs the service to return the created/updated resource on success.", - "x-ms-parameter-location": "method" - }, - "EndpointParameter": { - "name": "endpoint", - "in": "path", - "required": true, - "type": "string", - "x-ms-skip-url-encoding": true, - "description": "The endpoint URL of the search service.", - "x-ms-parameter-location": "client" - } - } -} diff --git a/sdk/search/Azure.Search.Documents/tests/Samples/HelloWorld.cs b/sdk/search/Azure.Search.Documents/tests/Samples/HelloWorld.cs index 5a1b2b93c8f8..f003498fafe8 100644 --- a/sdk/search/Azure.Search.Documents/tests/Samples/HelloWorld.cs +++ b/sdk/search/Azure.Search.Documents/tests/Samples/HelloWorld.cs @@ -161,6 +161,7 @@ public async Task CreateIndexerAsync() Environment.SetEnvironmentVariable("SEARCH_API_KEY", resources.PrimaryApiKey); Environment.SetEnvironmentVariable("STORAGE_CONNECTION_STRING", resources.StorageAccountConnectionString); Environment.SetEnvironmentVariable("STORAGE_CONTAINER", resources.BlobContainerName); + Environment.SetEnvironmentVariable("COGNITIVE_SERVICES_KEY", resources.CognitiveServicesKey); // Define clean up tasks to be invoked in reverse order added. Stack> cleanUpTasks = new Stack>(); @@ -294,8 +295,8 @@ public async Task CreateIndexerAsync() skillsetName, new SearchIndexerSkill[] { translationSkill, conditionalSkill }) { - //@@CognitiveServicesAccount = new CognitiveServicesAccountKey(Environment.GetEnvironmentVariable("COGNITIVE_KEY")) - /*@@*/ CognitiveServicesAccount = new DefaultCognitiveServicesAccount() // This works for our very small hotel data set. + CognitiveServicesAccount = new CognitiveServicesAccountKey( + Environment.GetEnvironmentVariable("COGNITIVE_SERVICES_KEY")) }; await indexerClient.CreateSkillsetAsync(skillset); @@ -346,8 +347,8 @@ public async Task CreateIndexerAsync() // index is deleted when our SearchResources goes out of scope. cleanUpTasks.Push(() => indexerClient.DeleteIndexerAsync(indexerName)); - // Wait a bit to make sure documents are indexed. - await DelayAsync(TimeSpan.FromSeconds(5)); + // Wait till the indexer is done. + await WaitForIndexingAsync(indexerClient, indexerName); #region Snippet:Azure_Search_Tests_Samples_CreateIndexerAsync_Query // Get a SearchClient from the SearchIndexClient to share its pipeline. diff --git a/sdk/search/Azure.Search.Documents/tests/SearchIndexerClientTests.cs b/sdk/search/Azure.Search.Documents/tests/SearchIndexerClientTests.cs index 4dcbcab3a97d..83ee0933edfe 100644 --- a/sdk/search/Azure.Search.Documents/tests/SearchIndexerClientTests.cs +++ b/sdk/search/Azure.Search.Documents/tests/SearchIndexerClientTests.cs @@ -523,53 +523,5 @@ public async Task CrudSkillset() throw; } } - - /// - /// Waits for an indexer to complete up to the given . - /// - /// The to use for requests. - /// The name of the to check. - /// The amount of time before being canceled. The default is 1 minute. - /// A to await. - private async Task WaitForIndexingAsync( - SearchIndexerClient client, - string indexerName, - TimeSpan? timeout = null) - { - TimeSpan delay = TimeSpan.FromSeconds(10); - timeout ??= TimeSpan.FromMinutes(5); - - using CancellationTokenSource cts = new CancellationTokenSource(timeout.Value); - - while (true) - { - await DelayAsync(delay, cancellationToken: cts.Token); - - SearchIndexerStatus status = await client.GetIndexerStatusAsync( - indexerName, - cancellationToken: cts.Token); - - if (status.Status == IndexerStatus.Running && - status.LastResult?.Status == IndexerExecutionStatus.Success) - { - return; - } - else if (status.Status == IndexerStatus.Error && status.LastResult is IndexerExecutionResult lastResult) - { - StringBuilder sb = new StringBuilder(); - sb.AppendLine($"Error: {lastResult.ErrorMessage}"); - - if (lastResult.Errors?.Count > 0) - { - foreach (SearchIndexerError error in lastResult.Errors) - { - sb.AppendLine($" ---> {error.ErrorMessage}"); - } - } - - Assert.Fail(sb.ToString()); - } - } - } } } 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 1c05290ea165..7a73046b8b8c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggester.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "94", "Content-Type": "application/json", - "traceparent": "00-5cab8b69aa4d8348b6767fb88f7e41b3-f5f2907f7743c041-00", + "traceparent": "00-885843ff791a4546a992c7adc2fbb90a-b804d036685f8e47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6f3d77229cc71cc50b5eb3ad02218b24", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "6f3d7722-9cc7-1cc5-0b5e-b3ad02218b24", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "133", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "53", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6f3d7722-9cc7-1cc5-0b5e-b3ad02218b24", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6f3d7722-9cc7-1cc5-0b5e-b3ad02218b24" }, "ResponseBody": { "value": [] @@ -43,9 +45,9 @@ ], "Variables": { "RandomSeed": "1881067006", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 78f6c2175b3a..4151fec8585e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ExcludesFieldsNotInSuggesterAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "94", "Content-Type": "application/json", - "traceparent": "00-c3488f7aa7afc14e89f513fab5a62088-da89484d79ed164f-00", + "traceparent": "00-d4cf97502f5f7042b8f342380a0d8f38-5a3e34d6c8be7546-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1879001f3bba4456832277712ba0dcff", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "1879001f-3bba-4456-8322-77712ba0dcff", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "1879001f-3bba-4456-8322-77712ba0dcff", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1879001f-3bba-4456-8322-77712ba0dcff" }, "ResponseBody": { "value": [] @@ -43,8 +45,8 @@ ], "Variables": { "RandomSeed": "1394587558", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 15632a09d3b7..b64f09337c4c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/Filter.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "112", "Content-Type": "application/json", - "traceparent": "00-6473fc91ac2c6d4ea52a7f119d7534f8-f3df1efb75946747-00", + "traceparent": "00-e57fd48a8cb7ef458cea8c6aca99dc09-0a66cd6fc995bc40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4c4f74ccc55692b9ef5f75074d36dcb0", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "4c4f74cc-c556-92b9-ef5f-75074d36dcb0", "Content-Length": "54", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "138", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4c4f74cc-c556-92b9-ef5f-75074d36dcb0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4c4f74cc-c556-92b9-ef5f-75074d36dcb0" }, "ResponseBody": { "value": [ @@ -48,8 +50,8 @@ ], "Variables": { "RandomSeed": "828291068", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0c5a43370d70..480813ed4e9f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzy.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "199", "Content-Type": "application/json", - "traceparent": "00-2ff4e484518fc44687cb14e68871e0be-aa0c2a61d1fe6947-00", + "traceparent": "00-ccbf646e9064b54c92667c8cc410a775-55c51cb6b9fab24b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f8c845e51731603e2e0f7960ce9d9038", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f8c845e5-1731-603e-2e0f-7960ce9d9038", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "52", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "14", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f8c845e5-1731-603e-2e0f-7960ce9d9038", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f8c845e5-1731-603e-2e0f-7960ce9d9038" }, "ResponseBody": { "value": [ @@ -53,8 +55,8 @@ ], "Variables": { "RandomSeed": "1645982235", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3eeb95c6a97c..6597359e94d7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAndFuzzyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "199", "Content-Type": "application/json", - "traceparent": "00-8ceaedd36f33cc40b3ffd3a6c63d2bc4-b4af4108c53fcf41-00", + "traceparent": "00-69b0d08fc024204dbf449a5e3a570299-ecb68b8a5887b84f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eb0865a2838daba95fdcefa4899ea5f7", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "eb0865a2-838d-aba9-5fdc-efa4899ea5f7", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "eb0865a2-838d-aba9-5fdc-efa4899ea5f7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "eb0865a2-838d-aba9-5fdc-efa4899ea5f7" }, "ResponseBody": { "value": [ @@ -53,8 +55,8 @@ ], "Variables": { "RandomSeed": "1398217694", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 008aa2bfe16e..8dc91ee8c98a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FilterAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "112", "Content-Type": "application/json", - "traceparent": "00-6f3ca505d59eda4b85c09b4b3fc1bb69-0b956d00aa02c646-00", + "traceparent": "00-06724ffd08e73a4f87ffd1152624b20c-ec39621487507747-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "64c8f2957acf4b9683b5923d9df5326a", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "64c8f295-7acf-4b96-83b5-923d9df5326a", "Content-Length": "54", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "64c8f295-7acf-4b96-83b5-923d9df5326a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "64c8f295-7acf-4b96-83b5-923d9df5326a" }, "ResponseBody": { "value": [ @@ -48,8 +50,8 @@ ], "Variables": { "RandomSeed": "50280089", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 24da64451a71..429987e1d630 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefault.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-c52d5cac37270049b3bec06b503fd70b-e868d8409d374343-00", + "traceparent": "00-18454c03b47b7646ae1ea632e9607ccd-c6e4f5c834a67f40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bf3ba05d0f02bc14a10549a3a6a48398", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bf3ba05d-0f02-bc14-a105-49a3a6a48398", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bf3ba05d-0f02-bc14-a105-49a3a6a48398", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bf3ba05d-0f02-bc14-a105-49a3a6a48398" }, "ResponseBody": { "value": [] @@ -42,8 +44,8 @@ ], "Variables": { "RandomSeed": "1557663442", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a57f308069dd..5a926fa2291d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/FuzzyIsOffByDefaultAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-d5eca493fe3d4a47a3c0a95c1c9b71a7-62ec761ca250c048-00", + "traceparent": "00-6c2d13946adeb64297ca05ade3d20dcf-be0c796de4486e45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4ff0621fa620cff0b5598b44909565ea", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "4ff0621f-a620-cff0-b559-8b44909565ea", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4ff0621f-a620-cff0-b559-8b44909565ea", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4ff0621f-a620-cff0-b559-8b44909565ea" }, "ResponseBody": { "value": [] @@ -42,8 +44,8 @@ ], "Variables": { "RandomSeed": "241835370", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e465ab8b503b..1dcac7be7370 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlighting.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-5cdea62590898b4d89b49d7e01c533d7-4258cafca44d4f46-00", + "traceparent": "00-4fddd82bbaf98240b7ac91915dd67d0b-38fbbb96d9f29a4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4837c8e58156ec941241d385a9cdc8fd", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "4837c8e5-8156-ec94-1241-d385a9cdc8fd", "Content-Length": "109", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4837c8e5-8156-ec94-1241-d385a9cdc8fd", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4837c8e5-8156-ec94-1241-d385a9cdc8fd" }, "ResponseBody": { "value": [ @@ -54,8 +56,8 @@ ], "Variables": { "RandomSeed": "1397489542", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7dcc05148fff..10a904340ab9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/HitHighlightingAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "220", "Content-Type": "application/json", - "traceparent": "00-dc2a81da9c5bf540becfc6b17646a6bc-ce4bd04784b26848-00", + "traceparent": "00-ee9329feec4cfc41851d171c1cd509b7-35c100978ed87b43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "16b7964e2bcee97574968c9ce40596b1", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "16b7964e-2bce-e975-7496-8c9ce40596b1", "Content-Length": "109", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "16b7964e-2bce-e975-7496-8c9ce40596b1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "16b7964e-2bce-e975-7496-8c9ce40596b1" }, "ResponseBody": { "value": [ @@ -54,8 +56,8 @@ ], "Variables": { "RandomSeed": "1713520203", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f57f830327b1..9fe23bac5cc7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "105", "Content-Type": "application/json", - "traceparent": "00-8570f4d7624c1b49ac6d2d94556a8e03-6afabe1e29bbaf40-00", + "traceparent": "00-74b36523eaeb0e4c92bfe1cc6dddf156-ce933b36d3e97a40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "edfd09388ec2b6212774be5f65822d31", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "edfd0938-8ec2-b621-2774-be5f65822d31", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "edfd0938-8ec2-b621-2774-be5f65822d31", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "edfd0938-8ec2-b621-2774-be5f65822d31" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "360658384", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0c6b8088578d..203c85ca8366 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/MultipleSelectedFieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "105", "Content-Type": "application/json", - "traceparent": "00-5bee48e81bdc824fb382269ddd7ed125-25c5fea5e3c3814f-00", + "traceparent": "00-2f3186738471df4caa092a2cbf48b099-9b58490af47e5947-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "869339ba1914679e297de403a9df39dd", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "869339ba-1914-679e-297d-e403a9df39dd", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "869339ba-1914-679e-297d-e403a9df39dd", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "869339ba-1914-679e-297d-e403a9df39dd" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1053158736", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 99811d0bd344..5e9c65bb4746 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTerm.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-f11a1b417e9979469ad85ee643fa7c35-9eb0b9fa955a9848-00", + "traceparent": "00-83c94247890d3241bf215b3973c14bcb-5b78383017a0f24c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "836405f774d01ce051263e9c5247117e", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "836405f7-74d0-1ce0-5126-3e9c5247117e", "Content-Length": "222", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "13", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "836405f7-74d0-1ce0-5126-3e9c5247117e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "836405f7-74d0-1ce0-5126-3e9c5247117e" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "351280611", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 d1490760aab8..e1d6fe297a14 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "65", "Content-Type": "application/json", - "traceparent": "00-a1c3a5326cbca74495580b9bdc3c727b-2b2a7b16cc8e5647-00", + "traceparent": "00-cdb66d985e3e3049b2d61020a49fd505-357e11cfcf069f47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4dedd4c7726e4d35e45f1c715ba7d89a", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "4dedd4c7-726e-4d35-e45f-1c715ba7d89a", "Content-Length": "222", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4dedd4c7-726e-4d35-e45f-1c715ba7d89a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4dedd4c7-726e-4d35-e45f-1c715ba7d89a" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "1058886123", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2e1442116a8e..b9da8f305290 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefault.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "36", "Content-Type": "application/json", - "traceparent": "00-8ff980c9ad75504299893002a48d5315-84173b979c910c41-00", + "traceparent": "00-99c19e6ed3f55249933fe050d44ff8e5-9c2845ad4e98ae48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "40ea6fcb4189c48fb4658454cf3b00a9", "x-ms-return-client-request-id": "true" @@ -23,16 +23,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "40ea6fcb-4189-c48f-b465-8454cf3b00a9", "Content-Length": "222", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "40ea6fcb-4189-c48f-b465-8454cf3b00a9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "40ea6fcb-4189-c48f-b465-8454cf3b00a9" }, "ResponseBody": { "value": [ @@ -62,8 +64,8 @@ ], "Variables": { "RandomSeed": "1143673798", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 90f628423d2f..b60f87194ddd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermOnByDefaultAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "36", "Content-Type": "application/json", - "traceparent": "00-daf7f34d8affe64788b28ba6c3fd61fe-a1acd9404f972141-00", + "traceparent": "00-265e1b40d5d73e4bbca558e9a4518f2f-799781e1e183c544-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7edde5813978a96d073fde61935be7fc", "x-ms-return-client-request-id": "true" @@ -23,16 +23,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "7edde581-3978-a96d-073f-de61935be7fc", "Content-Length": "222", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "7edde581-3978-a96d-073f-de61935be7fc", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "7edde581-3978-a96d-073f-de61935be7fc" }, "ResponseBody": { "value": [ @@ -62,8 +64,8 @@ ], "Variables": { "RandomSeed": "671885112", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 6ebf9f4bf638..8ce53e450010 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContext.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-ae26a6fb77ceeb4fa8e0720bf529f6ec-5615e581622ece45-00", + "traceparent": "00-82fae53acb3fb3409d8a2ba7ef2e05f2-e1bd36c68f857948-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0e64f365406cc7f5f3873703a106b469", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0e64f365-406c-c7f5-f387-3703a106b469", "Content-Length": "208", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0e64f365-406c-c7f5-f387-3703a106b469", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0e64f365-406c-c7f5-f387-3703a106b469" }, "ResponseBody": { "value": [ @@ -55,8 +57,8 @@ ], "Variables": { "RandomSeed": "417866891", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 9b9f14f32bad..9fa38c3010fb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-d43e455640185d4b8c8b1cdd767b9cf0-69452dd8527d8244-00", + "traceparent": "00-7c5135c03dc0784a9bc668f5f6de0478-ce60d25ee682254a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "13f4ebfe4ca7795cde2ed18d91924aae", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "13f4ebfe-4ca7-795c-de2e-d18d91924aae", "Content-Length": "208", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "13f4ebfe-4ca7-795c-de2e-d18d91924aae", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "13f4ebfe-4ca7-795c-de2e-d18d91924aae" }, "ResponseBody": { "value": [ @@ -55,8 +57,8 @@ ], "Variables": { "RandomSeed": "253423147", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 79dff9daacea..e467263d21bc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzy.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "97", "Content-Type": "application/json", - "traceparent": "00-7fa1eb5d87ed2041852f7ef7cd4457d9-b157fd2fedacd049-00", + "traceparent": "00-34a2d625315fa14aaf1517ad9df1a7e6-e56d01a8956b1d49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "efc7a0aba29c103d801829a20981a518", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "efc7a0ab-a29c-103d-8018-29a20981a518", "Content-Length": "117", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "efc7a0ab-a29c-103d-8018-29a20981a518", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "efc7a0ab-a29c-103d-8018-29a20981a518" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1757180672", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 479d90bcd78a..d5abce611c75 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithContextWithFuzzyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "97", "Content-Type": "application/json", - "traceparent": "00-964ef05a474e2242a8d382b8ce85c0b3-00a6789a2f021b49-00", + "traceparent": "00-c4a6cee74354c741ae00769521361b65-2e3f1ec3482b3a4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0f66fcbeb1d6ef60b26a400a224651c9", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0f66fcbe-b1d6-ef60-b26a-400a224651c9", "Content-Length": "117", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0f66fcbe-b1d6-ef60-b26a-400a224651c9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0f66fcbe-b1d6-ef60-b26a-400a224651c9" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1441381448", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 d976029da276..a1bd8fbb580e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzy.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "79", "Content-Type": "application/json", - "traceparent": "00-8630fd0f37c02a4ba5f8bb0b6b4cdf28-ec824ac30541f647-00", + "traceparent": "00-0dff5150a2c85645a1074d4734029e2d-e4b674f1587cba49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5ca86594e8d25f20dbb3c61763379935", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5ca86594-e8d2-5f20-dbb3-c61763379935", "Content-Length": "177", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5ca86594-e8d2-5f20-dbb3-c61763379935", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5ca86594-e8d2-5f20-dbb3-c61763379935" }, "ResponseBody": { "value": [ @@ -60,8 +62,8 @@ ], "Variables": { "RandomSeed": "1963046740", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 fe6c3f7f169b..cd57b646c135 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/OneTermWithFuzzyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "79", "Content-Type": "application/json", - "traceparent": "00-590df94ebb9e9f4d9b95d79e36068658-57e36e48dfba8543-00", + "traceparent": "00-7def892c6c42f940aff5cf43091445f3-e3d633ec674b3d46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a08d464f4ac88446775cc8c10d333177", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "a08d464f-4ac8-8446-775c-c8c10d333177", "Content-Length": "177", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a08d464f-4ac8-8446-775c-c8c10d333177", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a08d464f-4ac8-8446-775c-c8c10d333177" }, "ResponseBody": { "value": [ @@ -60,8 +62,8 @@ ], "Variables": { "RandomSeed": "59185497", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c4f8dab1698c..38f69be63e67 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-fcc9351911d0254e88e08e81cf9ab590-a4041bc8075a3e4a-00", + "traceparent": "00-909d660318b69a498e1f7ebdc7b96a91-49a382183c2cca4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e5c7d9b997a1b593ca55ff33ebda806b", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e5c7d9b9-97a1-b593-ca55-ff33ebda806b", "Content-Length": "54", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", + "Date": "Fri, 26 Jun 2020 05:55:58 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e5c7d9b9-97a1-b593-ca55-ff33ebda806b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e5c7d9b9-97a1-b593-ca55-ff33ebda806b" }, "ResponseBody": { "value": [ @@ -49,8 +51,8 @@ ], "Variables": { "RandomSeed": "2087664549", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 dc6caed3057d..420e5926d51c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SelectedFieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-2db9f8f291f8cc43a3efc4980ddce76c-ea09d71de4d74b4a-00", + "traceparent": "00-ddb7e0b207dd914694ecbff460cfc18b-b12201dfeb3b6241-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "69f62892c7dc580724c51cce1e00feb0", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "69f62892-c7dc-5807-24c5-1cce1e00feb0", "Content-Length": "54", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "69f62892-c7dc-5807-24c5-1cce1e00feb0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "69f62892-c7dc-5807-24c5-1cce1e00feb0" }, "ResponseBody": { "value": [ @@ -49,8 +51,8 @@ ], "Variables": { "RandomSeed": "912744819", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 9c5364f7f1b0..2fcc231a1288 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResults.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-1d30c9848c79e44687a06a3ad2bfd182-e6c78305f3934a48-00", + "traceparent": "00-7900a1979aa5694bb273a6c189d965e0-fc9aaabc6267d44e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "29c60ffc20158e0f544207fec06a07fb", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "29c60ffc-2015-8e0f-5442-07fec06a07fb", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "29c60ffc-2015-8e0f-5442-07fec06a07fb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "29c60ffc-2015-8e0f-5442-07fec06a07fb" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1372502635", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 27b665064138..a39ddd6d7bc2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/SizeTrimsResultsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-a817436550c86c4b859d5bfcc7a20ec7-3d9313a29a6e664a-00", + "traceparent": "00-156982f1d5b77443b34e00f5b238e628-c003d342fe51fa4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3dc4828d45d45e614c9b358bb2ee8cb7", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "3dc4828d-45d4-5e61-4c9b-358bb2ee8cb7", "Content-Length": "95", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3dc4828d-45d4-5e61-4c9b-358bb2ee8cb7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3dc4828d-45d4-5e61-4c9b-358bb2ee8cb7" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1444061374", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 476bc3486674..71cc3d15e412 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "84", "Content-Type": "application/json", - "traceparent": "00-fc4caf4611dfaf45a90db1237a179e57-4b6d93caffaacc48-00", + "traceparent": "00-6546f223d3093b488ef538b88b254321-af30a7001b712f4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f3c20d84a81656069c11f3761f03f2db", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f3c20d84-a816-5606-9c11-f3761f03f2db", "Content-Length": "247", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:18 GMT", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f3c20d84-a816-5606-9c11-f3761f03f2db", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f3c20d84-a816-5606-9c11-f3761f03f2db" }, "ResponseBody": { "value": [ @@ -64,8 +66,8 @@ ], "Variables": { "RandomSeed": "633936821", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 52d6c0e53c58..e5d92d6cc33b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/StaticallyTypedDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "84", "Content-Type": "application/json", - "traceparent": "00-d34b7cfdf5951b4680714d1eb54ba5b8-0513bd1714c40c4d-00", + "traceparent": "00-11ec15946a02924eaef27655d3d6629b-455db7669708e04b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "756ea08bb2000c2fa9b35ccc10deb879", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "756ea08b-b200-0c2f-a9b3-5ccc10deb879", "Content-Length": "247", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "756ea08b-b200-0c2f-a9b3-5ccc10deb879", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "756ea08b-b200-0c2f-a9b3-5ccc10deb879" }, "ResponseBody": { "value": [ @@ -64,8 +66,8 @@ ], "Variables": { "RandomSeed": "1865371289", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 51658bd68b81..ea676407fe52 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterName.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-09fc14a49300a64ba4d696fb748247f3-445fa5806645a942-00", + "traceparent": "00-b1c2ddeff3ad274c9b9be29175154f34-f730593fecea9845-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d7c46533c9974e93ea4923442227c276", "x-ms-return-client-request-id": "true" @@ -24,17 +24,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "d7c46533-c997-4e93-ea49-23442227c276", "Content-Language": "en", "Content-Length": "147", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d7c46533-c997-4e93-ea49-23442227c276", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d7c46533-c997-4e93-ea49-23442227c276" }, "ResponseBody": { "error": { @@ -46,8 +48,8 @@ ], "Variables": { "RandomSeed": "1535184382", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 baa7209ebe1d..e1dedc58ba3d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenBadSuggesterNameAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-46d3138a706f7a4a9fd6844070a6064c-049cecf9fd1e1f4f-00", + "traceparent": "00-e5f68d94fc252e4cbe5aac57beac5e77-3dd2b46292f08c49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a6de12b3b513c4f1287b9c3f23817176", "x-ms-return-client-request-id": "true" @@ -24,17 +24,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "a6de12b3-b513-c4f1-287b-9c3f23817176", "Content-Language": "en", "Content-Length": "147", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a6de12b3-b513-c4f1-287b-9c3f23817176", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a6de12b3-b513-c4f1-287b-9c3f23817176" }, "ResponseBody": { "error": { @@ -46,8 +48,8 @@ ], "Variables": { "RandomSeed": "1361948098", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 bb212926c779..45014d5af57e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterName.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-b223b5185b01bb47a2ff2f98d55440db-820e005ce74d9f4e-00", + "traceparent": "00-5c32a55285a7c14e8f291c4c90439fc1-fa0fc022a2a66c4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "86b9ad338e485267068298bef2de2881", "x-ms-return-client-request-id": "true" @@ -23,17 +23,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "86b9ad33-8e48-5267-0682-98bef2de2881", "Content-Language": "en", "Content-Length": "165", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "86b9ad33-8e48-5267-0682-98bef2de2881", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "86b9ad33-8e48-5267-0682-98bef2de2881" }, "ResponseBody": { "error": { @@ -45,8 +47,8 @@ ], "Variables": { "RandomSeed": "1535324533", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 04fa0412e4cf..72325872fd8e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/ThrowsWhenNoSuggesterNameAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-95d4e1cdf490a6429ba37e81859eab24-a8ffa5ea23378444-00", + "traceparent": "00-0c9c24c5bc99d54a892facacbc304f57-851c565fccc1d348-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e94476538dd86087f12a56d5df48818f", "x-ms-return-client-request-id": "true" @@ -23,17 +23,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e9447653-8dd8-6087-f12a-56d5df48818f", "Content-Language": "en", "Content-Length": "165", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e9447653-8dd8-6087-f12a-56d5df48818f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e9447653-8dd8-6087-f12a-56d5df48818f" }, "ResponseBody": { "error": { @@ -45,8 +47,8 @@ ], "Variables": { "RandomSeed": "1550951357", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 211d7611aa76..e9fb4af72fa1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTerms.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-c41bfa6bc4630848942f201aed0044a6-ddd1f6fc19a1414d-00", + "traceparent": "00-f9b9c1227bb89f43ae1a6776ef0ca3b7-b209c4aac511df41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "17d6ea87f57874a5023da5a7716cdfc4", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "17d6ea87-f578-74a5-023d-a5a7716cdfc4", "Content-Length": "278", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "17d6ea87-f578-74a5-023d-a5a7716cdfc4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "17d6ea87-f578-74a5-023d-a5a7716cdfc4" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "1006700618", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 dc6e1f6f87c5..888155ec401d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-41c6cab2e49c944e9708307bbd7e0fc3-a2ef66b15ad1434a-00", + "traceparent": "00-b097ef8587bba54886fc05754cc6d764-00b35cae65fe644e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "458ca740932cf39a52f4f2ec3f657f72", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "458ca740-932c-f39a-52f4-f2ec3f657f72", "Content-Length": "278", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:56:00 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "458ca740-932c-f39a-52f4-f2ec3f657f72", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "458ca740-932c-f39a-52f4-f2ec3f657f72" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "844093790", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 d085ad12b7d7..145c0ad9a0c6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzy.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-d37b14e603c33044ad9c5a132985902e-9e51cbc82b6bff45-00", + "traceparent": "00-c7f4ebb72ce75b4a82af82c8442d3ef3-b4eec2f00d188f4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ab4bffaddda8bac6d7b9511cd8f62fcf", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "ab4bffad-dda8-bac6-d7b9-511cd8f62fcf", "Content-Length": "290", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:55:59 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ab4bffad-dda8-bac6-d7b9-511cd8f62fcf", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ab4bffad-dda8-bac6-d7b9-511cd8f62fcf" }, "ResponseBody": { "value": [ @@ -64,8 +66,8 @@ ], "Variables": { "RandomSeed": "1627275835", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 47eac7930420..ebc07b454084 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/AutocompleteTests/TwoTermsWithFuzzyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.autocomplete?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.autocomplete?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-357ce097147d82428cf6e6bc70e3d894-3d6755f714c65e42-00", + "traceparent": "00-a2c54675c1989a43a9fec8d49e16956c-fff5f5ce0ff89c4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b82305e141df39207043d960114a3f30", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "b82305e1-41df-3920-7043-d960114a3f30", "Content-Length": "290", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:19 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 05:56:00 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b82305e1-41df-3920-7043-d960114a3f30", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b82305e1-41df-3920-7043-d960114a3f30" }, "ResponseBody": { "value": [ @@ -64,8 +66,8 @@ ], "Variables": { "RandomSeed": "1304635693", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 007c07c71fda..bf8606718bf1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64Keys.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027uvnunvny\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nnrgsnds\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "60", "Content-Type": "application/json", - "traceparent": "00-b309c40e5385594bb38d214138393f85-2951743c28e53740-00", + "traceparent": "00-b6ecd71133e8064b953d143dfbea093e-2d19e1cf6dc65742-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cd24350f9ede9fad02bbcf4ea0a9084c", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "cd24350f-9ede-9fad-02bb-cf4ea0a9084c", "Content-Length": "81", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:40 GMT", - "elapsed-time": "91", + "Date": "Fri, 26 Jun 2020 05:56:21 GMT", + "elapsed-time": "200", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "cd24350f-9ede-9fad-02bb-cf4ea0a9084c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "cd24350f-9ede-9fad-02bb-cf4ea0a9084c" }, "ResponseBody": { "value": [ @@ -50,15 +52,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027uvnunvny\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nnrgsnds\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3111efb40c99534fa94c802d7cd3e9f7-ed8dd989d492d646-00", + "traceparent": "00-84a41ad07b81d747963cc34c19dc0c29-3098b3758a374148-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "154595fd9d885b4732fac00032536feb", "x-ms-return-client-request-id": "true" @@ -67,31 +69,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "154595fd-9d88-5b47-32fa-c00032536feb", "Content-Length": "22", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:41:42 GMT", - "elapsed-time": "11", + "Date": "Fri, 26 Jun 2020 05:56:23 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "154595fd-9d88-5b47-32fa-c00032536feb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "154595fd-9d88-5b47-32fa-c00032536feb" }, "ResponseBody": { "hotelId": "AQIDBAU=" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027uvnunvny\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nnrgsnds\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5f28a791221d044f8488976f924dfe03-d142ae1a4db0d34a-00", + "traceparent": "00-d86e590f71b7ae4f927e7c9354a72bd0-07051ef340388f44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0ca0ff63dbe9ec7b0930de36774f162e", "x-ms-return-client-request-id": "true" @@ -100,21 +104,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:41:42 GMT", - "elapsed-time": "231", + "client-request-id": "0ca0ff63-dbe9-ec7b-0930-de36774f162e", + "Date": "Fri, 26 Jun 2020 05:56:23 GMT", + "elapsed-time": "409", "Expires": "-1", "Pragma": "no-cache", "request-id": "0ca0ff63-dbe9-ec7b-0930-de36774f162e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0ca0ff63-dbe9-ec7b-0930-de36774f162e" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "844862299", - "SearchIndexName": "uvnunvny", + "SearchIndexName": "nnrgsnds", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 201504ce32c7..eaee4a8349ee 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Base64KeysAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027aubvujwv\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027msbfxlde\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "60", "Content-Type": "application/json", - "traceparent": "00-616ca169c4663f43b5202cebe6daa163-4c328d158e961846-00", + "traceparent": "00-57e431b7ed9d4745a2dc146ac1a9626c-915004c39056a644-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5530b32662d2a5383c40be830872c390", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5530b326-62d2-a538-3c40-be830872c390", "Content-Length": "81", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:46:22 GMT", - "elapsed-time": "156", + "Date": "Fri, 26 Jun 2020 06:01:38 GMT", + "elapsed-time": "82", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5530b326-62d2-a538-3c40-be830872c390", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5530b326-62d2-a538-3c40-be830872c390" }, "ResponseBody": { "value": [ @@ -50,15 +52,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027aubvujwv\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027msbfxlde\u0027)/docs(\u0027AQIDBAU%3D\u0027)?$select=hotelId\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-0e1087d1ba96e24cbe4676423b183434-d7d96a5daf20e448-00", + "traceparent": "00-86a59dddb8cf984a8fcf213037c33f62-ede5b9e4ac85f842-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6753fc019934107636cd2198c92e6871", "x-ms-return-client-request-id": "true" @@ -67,31 +69,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "6753fc01-9934-1076-36cd-2198c92e6871", "Content-Length": "22", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:46:24 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:01:40 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6753fc01-9934-1076-36cd-2198c92e6871", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6753fc01-9934-1076-36cd-2198c92e6871" }, "ResponseBody": { "hotelId": "AQIDBAU=" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027aubvujwv\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027msbfxlde\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-984427624120574da2214f456b6f91cc-c3700ee035b46d4d-00", + "traceparent": "00-a598a5bb24e9a84c8fbea17900721aa0-092899c99ef69b45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b2f5f245ffccc5b3707f33a4647941bd", "x-ms-return-client-request-id": "true" @@ -100,21 +104,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:46:24 GMT", - "elapsed-time": "219", + "client-request-id": "b2f5f245-ffcc-c5b3-707f-33a4647941bd", + "Date": "Fri, 26 Jun 2020 06:01:40 GMT", + "elapsed-time": "320", "Expires": "-1", "Pragma": "no-cache", "request-id": "b2f5f245-ffcc-c5b3-707f-33a4647941bd", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b2f5f245-ffcc-c5b3-707f-33a4647941bd" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1260122787", - "SearchIndexName": "aubvujwv", + "SearchIndexName": "msbfxlde", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CanGetDynamicDocumentWithNullOrEmptyValuesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CanGetDynamicDocumentWithNullOrEmptyValuesAsync.json index 65c891e82c34..1b4f39af71aa 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CanGetDynamicDocumentWithNullOrEmptyValuesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CanGetDynamicDocumentWithNullOrEmptyValuesAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-yehjncgb.search.windows.net/indexes(\u0027sybvelrm\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yehjncgb.search.windows.net/indexes(\u0027sybvelrm\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -66,7 +66,7 @@ } }, { - "RequestUri": "https://azs-net-yehjncgb.search.windows.net/indexes(\u0027sybvelrm\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-yehjncgb.search.windows.net/indexes(\u0027sybvelrm\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "api-key": "Sanitized", @@ -127,4 +127,4 @@ "SearchIndexName": "sybvelrm", "SearchServiceName": "azs-net-yehjncgb" } -} \ 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 1fb95b9f62b0..1552467cd48d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectType.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tcxlmlyi\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pdcfidca\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "191", "Content-Type": "application/json", - "traceparent": "00-77f10ea08b907b49942454d5e81b0750-1e680756c0a48d44-00", + "traceparent": "00-003a20479ae69e4fa3cb317804e0f884-7a5e9efa35bccc43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f2dea44eafbfa4b6ba735f3c93646f5e", "x-ms-return-client-request-id": "true" @@ -43,8 +43,8 @@ "client-request-id": "f2dea44e-afbf-a4b6-ba73-5f3c93646f5e", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:26:07 GMT", - "elapsed-time": "99", + "Date": "Fri, 26 Jun 2020 05:56:47 GMT", + "elapsed-time": "79", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -65,15 +65,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tcxlmlyi\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Clocation%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pdcfidca\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Clocation%2Crooms%2FbaseRate\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-aedcd63c9091bf4ba7c6c3aa4a69ddf3-4f239fc75cf6b041-00", + "traceparent": "00-a32424de4ec0e442b6bb997d87615808-92bedc5c16073241-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9dfd77cc8a89de6cb092c4d1b6f43b5e", "x-ms-return-client-request-id": "true" @@ -85,8 +85,8 @@ "client-request-id": "9dfd77cc-8a89-de6c-b092-c4d1b6f43b5e", "Content-Length": "200", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:26:08 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 05:56:49 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,15 +119,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tcxlmlyi\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pdcfidca\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5e86405c2af2664787763e60fbaff5f0-e1936530bb93af4c-00", + "traceparent": "00-49c9d5d5cdb70d44b48235d297de7639-a0e90f3a6b0c4e4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "116b93ec2c2861072de398e0d79b3562", "x-ms-return-client-request-id": "true" @@ -137,8 +137,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "116b93ec-2c28-6107-2de3-98e0d79b3562", - "Date": "Mon, 01 Jun 2020 11:26:10 GMT", - "elapsed-time": "542", + "Date": "Fri, 26 Jun 2020 05:56:49 GMT", + "elapsed-time": "250", "Expires": "-1", "Pragma": "no-cache", "request-id": "116b93ec-2c28-6107-2de3-98e0d79b3562", @@ -150,9 +150,9 @@ ], "Variables": { "RandomSeed": "1073368072", - "SearchIndexName": "tcxlmlyi", + "SearchIndexName": "pdcfidca", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2fa103903866..edaf50b17925 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/CannotAlwaysDetermineCorrectTypeAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vufoohxy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027keipguig\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "191", "Content-Type": "application/json", - "traceparent": "00-fe42b832c474364ca0863bb600e3a922-3bc313363a5c314c-00", + "traceparent": "00-20d62b84a56fac4b9741b2a67a2b7d07-6b2a56ae89726d4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2fc6adffe4b6d5f88c266573078647dc", "x-ms-return-client-request-id": "true" @@ -43,8 +43,8 @@ "client-request-id": "2fc6adff-e4b6-d5f8-8c26-6573078647dc", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:28:12 GMT", - "elapsed-time": "123", + "Date": "Fri, 26 Jun 2020 06:02:04 GMT", + "elapsed-time": "163", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -65,15 +65,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vufoohxy\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Clocation%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027keipguig\u0027)/docs(\u00271\u0027)?$select=hotelId%2ChotelName%2Clocation%2Crooms%2FbaseRate\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b70a283761af2c458afb757d1939f2ce-3c3318708956d64c-00", + "traceparent": "00-8f646a553291a045ac87fd13c618d55e-a60cda8f84a39b47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "445154a46aeeea75e714de162175d29b", "x-ms-return-client-request-id": "true" @@ -85,8 +85,8 @@ "client-request-id": "445154a4-6aee-ea75-e714-de162175d29b", "Content-Length": "200", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:28:15 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:02:05 GMT", + "elapsed-time": "17", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,15 +119,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vufoohxy\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027keipguig\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-92965378acf5754f961dfcb7be56d6c8-9e305fb7b97b1344-00", + "traceparent": "00-1a1548f069c0ac4faa53a66ae4f61481-850f7b7430b0534e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aa050cde6d8374c8781ce99399c98836", "x-ms-return-client-request-id": "true" @@ -137,8 +137,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "aa050cde-6d83-74c8-781c-e99399c98836", - "Date": "Mon, 01 Jun 2020 11:28:15 GMT", - "elapsed-time": "662", + "Date": "Fri, 26 Jun 2020 06:02:05 GMT", + "elapsed-time": "378", "Expires": "-1", "Pragma": "no-cache", "request-id": "aa050cde-6d83-74c8-781c-e99399c98836", @@ -150,9 +150,9 @@ ], "Variables": { "RandomSeed": "815861156", - "SearchIndexName": "vufoohxy", + "SearchIndexName": "keipguig", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 968bc35d36f4..5d77b5b24eb1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027nsvitlqy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nmfcwijl\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "153", "Content-Type": "application/json", - "traceparent": "00-9fb191198f55cb48b43184550c65b0ec-1520d7e94fcd2e42-00", + "traceparent": "00-a392f54011740a4bab80ae6d28f296cc-89e2901f0c52944b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3cd4b4d13a707d1c9a15802c84f31845", "x-ms-return-client-request-id": "true" @@ -37,16 +37,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "3cd4b4d1-3a70-7d1c-9a15-802c84f31845", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:42:26 GMT", - "elapsed-time": "119", + "Date": "Fri, 26 Jun 2020 05:57:11 GMT", + "elapsed-time": "109", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3cd4b4d1-3a70-7d1c-9a15-802c84f31845", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3cd4b4d1-3a70-7d1c-9a15-802c84f31845" }, "ResponseBody": { "value": [ @@ -60,15 +62,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027nsvitlqy\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nmfcwijl\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-936693f18f415243a2cff14b3465e0a4-e01e6fc181f0e844-00", + "traceparent": "00-500c881a6b55f74a8fc7ac710b174c83-bef56ace26764749-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "25023fe79da338161865932bea9979d1", "x-ms-return-client-request-id": "true" @@ -77,16 +79,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "25023fe7-9da3-3816-1865-932bea9979d1", "Content-Length": "303", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:42:29 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 05:57:13 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "25023fe7-9da3-3816-1865-932bea9979d1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "25023fe7-9da3-3816-1865-932bea9979d1" }, "ResponseBody": { "hotelId": "1", @@ -115,15 +119,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027nsvitlqy\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nmfcwijl\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5e16e5a83cf8e5408a122376a94c528e-a7f05cf306342041-00", + "traceparent": "00-a7b9a0e346d52043a16ed1a7a96dd7cd-92f336a883d47242-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f2cd1d7126755cd2e3778f1baba129ae", "x-ms-return-client-request-id": "true" @@ -132,21 +136,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:42:29 GMT", - "elapsed-time": "330", + "client-request-id": "f2cd1d71-2675-5cd2-e377-8f1baba129ae", + "Date": "Fri, 26 Jun 2020 05:57:15 GMT", + "elapsed-time": "213", "Expires": "-1", "Pragma": "no-cache", "request-id": "f2cd1d71-2675-5cd2-e377-8f1baba129ae", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f2cd1d71-2675-5cd2-e377-8f1baba129ae" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "315955367", - "SearchIndexName": "nsvitlqy", + "SearchIndexName": "nmfcwijl", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 914636bd06d6..1124bb38de2e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyExpandedWithSubfieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027gxiwxcyr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027srmlwsov\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "153", "Content-Type": "application/json", - "traceparent": "00-83ce13116237b440a9f69e83ecb2267b-200c8fea3721b041-00", + "traceparent": "00-2a1577952240f94c9ff0d2653ff54f53-2fa8415a5c7de545-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "71ed97ceae159e6a0e532497e039d77d", "x-ms-return-client-request-id": "true" @@ -37,16 +37,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "71ed97ce-ae15-9e6a-0e53-2497e039d77d", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:08 GMT", - "elapsed-time": "93", + "Date": "Fri, 26 Jun 2020 06:02:30 GMT", + "elapsed-time": "406", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "71ed97ce-ae15-9e6a-0e53-2497e039d77d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "71ed97ce-ae15-9e6a-0e53-2497e039d77d" }, "ResponseBody": { "value": [ @@ -60,15 +62,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027gxiwxcyr\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027srmlwsov\u0027)/docs(\u00271\u0027)?$select=hotelId%2Crooms\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f8a166a4dadd6743a587a0e6345a61ab-39bc296c0c28664e-00", + "traceparent": "00-0e728613c4d6c343a2070d4e82a964f8-1fc3348975125246-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "15e44950bf432eb7b3a770fb7c6a0521", "x-ms-return-client-request-id": "true" @@ -77,16 +79,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "15e44950-bf43-2eb7-b3a7-70fb7c6a0521", "Content-Length": "303", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:10 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:02:32 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "15e44950-bf43-2eb7-b3a7-70fb7c6a0521", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "15e44950-bf43-2eb7-b3a7-70fb7c6a0521" }, "ResponseBody": { "hotelId": "1", @@ -115,15 +119,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027gxiwxcyr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027srmlwsov\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-576d58e3c08e9045b2bce6c57f3eae81-107c8518a98bea46-00", + "traceparent": "00-24c5df776244964a9a3a3614e8183705-1be0fa86058bce47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1a30c6e00f9fecbe558bd7d80deb43b4", "x-ms-return-client-request-id": "true" @@ -132,21 +136,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:47:10 GMT", - "elapsed-time": "234", + "client-request-id": "1a30c6e0-0f9f-ecbe-558b-d7d80deb43b4", + "Date": "Fri, 26 Jun 2020 06:02:32 GMT", + "elapsed-time": "248", "Expires": "-1", "Pragma": "no-cache", "request-id": "1a30c6e0-0f9f-ecbe-558b-d7d80deb43b4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1a30c6e0-0f9f-ecbe-558b-d7d80deb43b4" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "169067094", - "SearchIndexName": "gxiwxcyr", + "SearchIndexName": "srmlwsov", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c6660b2f9283..64ecd1b35b4a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wlwdgawu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jfdvivri\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-aa9290f4fd199d4bb0b9f2fd30cef694-7f3e17a6852a4645-00", + "traceparent": "00-040e6ec159b3004987db91097d541774-1be4c98332262348-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "696bce3f9eebe5daac4334cbc92301b1", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "696bce3f-9eeb-e5da-ac43-34cbc92301b1", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:42:51 GMT", - "elapsed-time": "117", + "Date": "Fri, 26 Jun 2020 05:57:37 GMT", + "elapsed-time": "134", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "696bce3f-9eeb-e5da-ac43-34cbc92301b1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "696bce3f-9eeb-e5da-ac43-34cbc92301b1" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wlwdgawu\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jfdvivri\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-75d90fde0550d14b80f43eebbc974e61-efc87de30ebce84b-00", + "traceparent": "00-d4f7dfcb5445634f953b82f2347817bf-dd28e0fffce42745-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c7657cc6bb194bb27b6bca53df51a5f0", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c7657cc6-bb19-4bb2-7b6b-ca53df51a5f0", "Content-Length": "114", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:42:52 GMT", - "elapsed-time": "27", + "Date": "Fri, 26 Jun 2020 05:57:40 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c7657cc6-bb19-4bb2-7b6b-ca53df51a5f0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c7657cc6-bb19-4bb2-7b6b-ca53df51a5f0" }, "ResponseBody": { "hotelId": "1", @@ -91,15 +95,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wlwdgawu\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jfdvivri\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c4cec3a4e5066d4eb4fd9b1e1f90d935-76efe326ac778043-00", + "traceparent": "00-ddd3e979435baf4eb8e6e0cdf76c1563-693ad9243c422045-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "38336bd79b6197415982a7622bf3aa36", "x-ms-return-client-request-id": "true" @@ -108,21 +112,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:42:52 GMT", - "elapsed-time": "313", + "client-request-id": "38336bd7-9b61-9741-5982-a7622bf3aa36", + "Date": "Fri, 26 Jun 2020 05:57:40 GMT", + "elapsed-time": "251", "Expires": "-1", "Pragma": "no-cache", "request-id": "38336bd7-9b61-9741-5982-a7622bf3aa36", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "38336bd7-9b61-9741-5982-a7622bf3aa36" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "2066000977", - "SearchIndexName": "wlwdgawu", + "SearchIndexName": "jfdvivri", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 41e43b3a7564..dcc457f586fc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyGetsOmittedWhenIgnoredBySubfieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vkcyygmn\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lhwfosko\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-256734ef10b20e40bcdf34b812d7d630-008428c33ad84e4c-00", + "traceparent": "00-dbba4b4a0ab9b949bd6e9f09187d18d5-7cdd829dae779b44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65ce64a43b09e542be789e2294642d15", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "65ce64a4-3b09-e542-be78-9e2294642d15", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:32 GMT", - "elapsed-time": "128", + "Date": "Fri, 26 Jun 2020 06:02:55 GMT", + "elapsed-time": "95", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "65ce64a4-3b09-e542-be78-9e2294642d15", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "65ce64a4-3b09-e542-be78-9e2294642d15" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vkcyygmn\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lhwfosko\u0027)/docs(\u00271\u0027)?$select=hotelId%2Caddress\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-473e38bfd5817947b2a8bf17ccce763b-39ce53b90ce61e42-00", + "traceparent": "00-4bc22f40120360409e68510b70ce8330-35596aca59b51247-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e998569315e4c42115fc8da4a7e10726", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e9985693-15e4-c421-15fc-8da4a7e10726", "Content-Length": "114", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:34 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:02:57 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e9985693-15e4-c421-15fc-8da4a7e10726", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e9985693-15e4-c421-15fc-8da4a7e10726" }, "ResponseBody": { "hotelId": "1", @@ -91,15 +95,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vkcyygmn\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lhwfosko\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-e12260cd219ba7428f8234a6ad9bc435-eb12d754c000a74e-00", + "traceparent": "00-41591bce716dcf4690ea0ed8ab3f83ce-59d63e4735cf3b49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6ecc2b52202417ff81e3db1c19db6bc0", "x-ms-return-client-request-id": "true" @@ -108,21 +112,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:47:34 GMT", - "elapsed-time": "177", + "client-request-id": "6ecc2b52-2024-17ff-81e3-db1c19db6bc0", + "Date": "Fri, 26 Jun 2020 06:02:57 GMT", + "elapsed-time": "194", "Expires": "-1", "Pragma": "no-cache", "request-id": "6ecc2b52-2024-17ff-81e3-db1c19db6bc0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6ecc2b52-2024-17ff-81e3-db1c19db6bc0" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "399190745", - "SearchIndexName": "vkcyygmn", + "SearchIndexName": "lhwfosko", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0ea4d4266bce..bffc71e9e042 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNulls.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027okgcxaqw\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ypbusyss\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-6147681b064128458f78cbdf13b59092-b2e637bdce4bd24b-00", + "traceparent": "00-2bc226eaac859241979428ce17a0d2c0-25e9fa6151686d44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "41298b33ba87801183d4e63a5116f18c", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "41298b33-ba87-8011-83d4-e63a5116f18c", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:14 GMT", - "elapsed-time": "101", + "Date": "Fri, 26 Jun 2020 05:58:03 GMT", + "elapsed-time": "318", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "41298b33-ba87-8011-83d4-e63a5116f18c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "41298b33-ba87-8011-83d4-e63a5116f18c" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027okgcxaqw\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ypbusyss\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c4b264e0769a48458fb105c63bb296e9-0cd7e6b41895c94b-00", + "traceparent": "00-584adf3a20d6f545adb69c60ff8f6540-97330aa8dbb9864b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9d0cb48abffadd494c0801195f598b73", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9d0cb48a-bffa-dd49-4c08-01195f598b73", "Content-Length": "309", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:16 GMT", + "Date": "Fri, 26 Jun 2020 05:58:05 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9d0cb48a-bffa-dd49-4c08-01195f598b73", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9d0cb48a-bffa-dd49-4c08-01195f598b73" }, "ResponseBody": { "hotelId": "1", @@ -102,15 +106,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027okgcxaqw\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ypbusyss\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a40261cdc075fb4f96b0c3c306e917b9-a3d200e670175d48-00", + "traceparent": "00-744e06b429bdb64fb7194b79aea61843-a255e427171e4545-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "145dbace99a6b5d6d67fe7cc994aa30f", "x-ms-return-client-request-id": "true" @@ -119,21 +123,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:43:16 GMT", - "elapsed-time": "235", + "client-request-id": "145dbace-99a6-b5d6-d67f-e7cc994aa30f", + "Date": "Fri, 26 Jun 2020 05:58:05 GMT", + "elapsed-time": "397", "Expires": "-1", "Pragma": "no-cache", "request-id": "145dbace-99a6-b5d6-d67f-e7cc994aa30f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "145dbace-99a6-b5d6-d67f-e7cc994aa30f" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1573078829", - "SearchIndexName": "okgcxaqw", + "SearchIndexName": "ypbusyss", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 acc7f9be3041..c85940a53d75 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesBecomeNullsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027buaoblej\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027csncuhfo\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-30b604ba08f1a64888769c20d5c93b52-2c25b6b8ed906041-00", + "traceparent": "00-96f75ecb81c8b347b761482effc7e4e9-9eb84c2f5498f94a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1f0de7652762769c327cfd51bc3fd759", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "1f0de765-2762-769c-327c-fd51bc3fd759", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:55 GMT", - "elapsed-time": "89", + "Date": "Fri, 26 Jun 2020 06:03:20 GMT", + "elapsed-time": "102", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "1f0de765-2762-769c-327c-fd51bc3fd759", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1f0de765-2762-769c-327c-fd51bc3fd759" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027buaoblej\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027csncuhfo\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-1dc01ba7bae8ab47bfe1af291f133761-6a563746827a5c40-00", + "traceparent": "00-9cecee51c04a7346a1ea4fcc756a369f-ee7c915fe3353b47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e5585d15760ad5fc6d7f7db317c1f906", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e5585d15-760a-d5fc-6d7f-7db317c1f906", "Content-Length": "309", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:47:57 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:03:21 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e5585d15-760a-d5fc-6d7f-7db317c1f906", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e5585d15-760a-d5fc-6d7f-7db317c1f906" }, "ResponseBody": { "hotelId": "1", @@ -102,15 +106,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027buaoblej\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027csncuhfo\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-34ee30fa7b4f90419babab242bf2f3ed-f3b06ea8a67a1c47-00", + "traceparent": "00-8c972546a40b5a41818609b32334e210-3832cb7acf8c3346-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b5f729fca7dc8f21672b2f2e2b5a4d43", "x-ms-return-client-request-id": "true" @@ -119,21 +123,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:47:57 GMT", - "elapsed-time": "184", + "client-request-id": "b5f729fc-a7dc-8f21-672b-2f2e2b5a4d43", + "Date": "Fri, 26 Jun 2020 06:03:23 GMT", + "elapsed-time": "416", "Expires": "-1", "Pragma": "no-cache", "request-id": "b5f729fc-a7dc-8f21-672b-2f2e2b5a4d43", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b5f729fc-a7dc-8f21-672b-2f2e2b5a4d43" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "996781470", - "SearchIndexName": "buaoblej", + "SearchIndexName": "csncuhfo", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 788754639504..f26f9db98fd7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocument.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xsbnqxsu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027hvmmxeef\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "271", "Content-Type": "application/json", - "traceparent": "00-9b872614bb507a4e9781767c607f0988-5f4b3dcdabc15d4c-00", + "traceparent": "00-bb6e36b3e24817419a5f0c6341083e89-b48ad3dd404b3342-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b9574961c9aa760b31d6c385b198a1df", "x-ms-return-client-request-id": "true" @@ -43,16 +43,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "b9574961-c9aa-760b-31d6-c385b198a1df", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:37 GMT", - "elapsed-time": "101", + "Date": "Fri, 26 Jun 2020 05:58:28 GMT", + "elapsed-time": "150", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b9574961-c9aa-760b-31d6-c385b198a1df", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b9574961-c9aa-760b-31d6-c385b198a1df" }, "ResponseBody": { "value": [ @@ -66,15 +68,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xsbnqxsu\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027hvmmxeef\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b7342e3167bae44c91c9074433bbf4a7-f764a8a7d2f53247-00", + "traceparent": "00-24d3449cec78674a809d116fcd8a4840-7c4133428a88a24e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "86d67118a7e903c06716cf2467397648", "x-ms-return-client-request-id": "true" @@ -83,16 +85,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "86d67118-a7e9-03c0-6716-cf2467397648", "Content-Length": "363", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:40 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 05:58:30 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "86d67118-a7e9-03c0-6716-cf2467397648", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "86d67118-a7e9-03c0-6716-cf2467397648" }, "ResponseBody": { "hotelId": "1", @@ -122,15 +126,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xsbnqxsu\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027hvmmxeef\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-139d4cf6cb4b504f82b6abc794b95cd2-bf2c489ff9b3d14f-00", + "traceparent": "00-607f44c499bb3540aac713ea52828e15-9f506f5095b9cb45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1690e07639cdfbc3499eb1822567230e", "x-ms-return-client-request-id": "true" @@ -139,21 +143,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:43:40 GMT", - "elapsed-time": "193", + "client-request-id": "1690e076-39cd-fbc3-499e-b1822567230e", + "Date": "Fri, 26 Jun 2020 05:58:30 GMT", + "elapsed-time": "187", "Expires": "-1", "Pragma": "no-cache", "request-id": "1690e076-39cd-fbc3-499e-b1822567230e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1690e076-39cd-fbc3-499e-b1822567230e" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "414325153", - "SearchIndexName": "xsbnqxsu", + "SearchIndexName": "hvmmxeef", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7c78856f2ce9..b39e887fec82 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/EmptyValuesDynamicDocumentAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027eoqbtafd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uffygpqa\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "271", "Content-Type": "application/json", - "traceparent": "00-75b557e9fe6c824ab1203558d84ff200-e68c9bbd0828ac4d-00", + "traceparent": "00-33912f5ac6376948a6b8d80ded7ab300-cd8f5467ead01541-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8593d425c542ce638f3cf3385e65346d", "x-ms-return-client-request-id": "true" @@ -43,16 +43,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "8593d425-c542-ce63-8f3c-f3385e65346d", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:48:18 GMT", - "elapsed-time": "82", + "Date": "Fri, 26 Jun 2020 06:03:46 GMT", + "elapsed-time": "250", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "8593d425-c542-ce63-8f3c-f3385e65346d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "8593d425-c542-ce63-8f3c-f3385e65346d" }, "ResponseBody": { "value": [ @@ -66,15 +68,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027eoqbtafd\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uffygpqa\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-1e0ea7463a72c84282792ca633d019f8-cbfa590c065ea543-00", + "traceparent": "00-2a5e3d29e126c5429a8466540f873a1a-98dec2a718baf440-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e69a2eb12a8de32e2d979df23babf734", "x-ms-return-client-request-id": "true" @@ -83,16 +85,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e69a2eb1-2a8d-e32e-2d97-9df23babf734", "Content-Length": "363", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:48:20 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 06:03:48 GMT", + "elapsed-time": "18", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e69a2eb1-2a8d-e32e-2d97-9df23babf734", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e69a2eb1-2a8d-e32e-2d97-9df23babf734" }, "ResponseBody": { "hotelId": "1", @@ -122,15 +126,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027eoqbtafd\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uffygpqa\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7aa9658f9f265d4898cb6c115abe57db-37990209a3426a45-00", + "traceparent": "00-aabfcf502b534d438fe9d1d4ba31d493-0b45a19a4beb5048-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "85fddb1228300ecdf4f4af00cb41504a", "x-ms-return-client-request-id": "true" @@ -139,21 +143,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:48:20 GMT", - "elapsed-time": "177", + "client-request-id": "85fddb12-2830-0ecd-f4f4-af00cb41504a", + "Date": "Fri, 26 Jun 2020 06:03:48 GMT", + "elapsed-time": "286", "Expires": "-1", "Pragma": "no-cache", "request-id": "85fddb12-2830-0ecd-f4f4-af00cb41504a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "85fddb12-2830-0ecd-f4f4-af00cb41504a" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1106232816", - "SearchIndexName": "eoqbtafd", + "SearchIndexName": "uffygpqa", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 11ccfb239d16..b94e55b98848 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDict.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-de70e0fede34fd4884604dd9d4becc08-753d6753cc69fa40-00", + "traceparent": "00-43db56b900e99d4c82f223641ace8d50-6217bc7742a5be4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "799b1890cb46f19f37ea469782ee6797", "x-ms-return-client-request-id": "true" @@ -18,41 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "326", + "client-request-id": "799b1890-cb46-f19f-37ea-469782ee6797", + "Content-Length": "432", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:40 GMT", - "elapsed-time": "107", + "Date": "Fri, 26 Jun 2020 05:58:33 GMT", + "elapsed-time": "59", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "799b1890-cb46-f19f-37ea-469782ee6797", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "799b1890-cb46-f19f-37ea-469782ee6797" }, - "ResponseBody": { - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } + "ResponseBody": "{\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" } ], "Variables": { "RandomSeed": "1106318049", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 73c494413df0..cb7b8cdae0fd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDictAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-95add1c5459e7448a047d445c87aaa90-477b7121c1f1cb43-00", + "traceparent": "00-06b26d3ad68dd142ae94c1a683d2636e-c8613827a0601944-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b12bf8433d0f2619d56f5cefa1b09e5f", "x-ms-return-client-request-id": "true" @@ -18,41 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "326", + "client-request-id": "b12bf843-3d0f-2619-d56f-5cefa1b09e5f", + "Content-Length": "432", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:48:20 GMT", - "elapsed-time": "117", + "Date": "Fri, 26 Jun 2020 06:03:50 GMT", + "elapsed-time": "65", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b12bf843-3d0f-2619-d56f-5cefa1b09e5f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b12bf843-3d0f-2619-d56f-5cefa1b09e5f" }, - "ResponseBody": { - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } + "ResponseBody": "{\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" } ], "Variables": { "RandomSeed": "554905365", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0a72ef909629..7c0a7b411709 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamic.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -55,4 +55,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" } -} \ 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 9950f1c7ea77..7f488f4f2f2b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentDynamicAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -55,4 +55,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" } -} \ 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 ef0223e484b2..7194dba961eb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStatic.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2fd0326aced16148840cabb972486dd8-f904bf547105bb4f-00", + "traceparent": "00-1680fd52364f2842b5ff76e8c8ca463c-aa9ea06eb6dbef48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bf19f813f46341823350123eaadb38c7", "x-ms-return-client-request-id": "true" @@ -18,41 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "326", + "client-request-id": "bf19f813-f463-4182-3350-123eaadb38c7", + "Content-Length": "432", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:43:40 GMT", + "Date": "Fri, 26 Jun 2020 05:58:33 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bf19f813-f463-4182-3350-123eaadb38c7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bf19f813-f463-4182-3350-123eaadb38c7" }, - "ResponseBody": { - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } + "ResponseBody": "{\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" } ], "Variables": { "RandomSeed": "868892207", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0f3e083abe16..3f644654323b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetDocumentStaticAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-11c6afee7b80324ab328bd08919bc98f-17c21fa57ef5ae4f-00", + "traceparent": "00-c9c348660254d142bf293fd133efc040-d3e09ba059a6234c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a813557250353459f176eb2e3113d05a", "x-ms-return-client-request-id": "true" @@ -18,41 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "326", + "client-request-id": "a8135572-5035-3459-f176-eb2e3113d05a", + "Content-Length": "432", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:48:20 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 06:03:50 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a8135572-5035-3459-f176-eb2e3113d05a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a8135572-5035-3459-f176-eb2e3113d05a" }, - "ResponseBody": { - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } + "ResponseBody": "{\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" } ], "Variables": { "RandomSeed": "2141683884", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexDynamicDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexDynamicDocumentAsync.json index 832fdb51ade5..4e1c9d6cf9e4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexDynamicDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexDynamicDocumentAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-ppdxeuxp.search.windows.net/indexes(\u0027agrnuibg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ppdxeuxp.search.windows.net/indexes(\u0027agrnuibg\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -79,7 +79,7 @@ } }, { - "RequestUri": "https://azs-net-ppdxeuxp.search.windows.net/indexes(\u0027agrnuibg\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-ppdxeuxp.search.windows.net/indexes(\u0027agrnuibg\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "api-key": "Sanitized", @@ -146,4 +146,4 @@ "SearchIndexName": "agrnuibg", "SearchServiceName": "azs-net-ppdxeuxp" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexStaticDocumentAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexStaticDocumentAsync.json index de90321e4b47..561e444f14a4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexStaticDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/GetRecentlyIndexStaticDocumentAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gyivpeht.search.windows.net/indexes(\u0027tqogkccw\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gyivpeht.search.windows.net/indexes(\u0027tqogkccw\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -79,4 +79,4 @@ "SearchIndexName": "tqogkccw", "SearchServiceName": "azs-net-gyivpeht" } -} \ 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 fadf513892a6..d7e3e44f8326 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocument.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ababbqyr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lrsccbue\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "962", "Content-Type": "application/json", - "traceparent": "00-f22ad1f65a9a494390e5e0f5a053d393-9a40598d382f0f4c-00", + "traceparent": "00-be7570f392f18d419dd7a788769ec6cb-2c02fd49ed42ba4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "26a6f1d5a3b239468a59914d90ca500b", "x-ms-return-client-request-id": "true" @@ -53,8 +53,8 @@ "client-request-id": "26a6f1d5-a3b2-3946-8a59-914d90ca500b", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:03:59 GMT", - "elapsed-time": "115", + "Date": "Fri, 26 Jun 2020 05:58:54 GMT", + "elapsed-time": "84", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -75,15 +75,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ababbqyr\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lrsccbue\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ab00e89228d1a24881318ec99bd50e4b-2a6ce4812d06434f-00", + "traceparent": "00-095a44996df9a142bdd53b6ae86f221d-37eeec7479bb4a41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5d990c2a343c51ee5341d72213255f52", "x-ms-return-client-request-id": "true" @@ -95,8 +95,8 @@ "client-request-id": "5d990c2a-343c-51ee-5341-d72213255f52", "Content-Length": "940", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:04:01 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 05:58:56 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,15 +108,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ababbqyr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lrsccbue\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ade9416cd8fefa49a92d76c8c3841653-97ae9aff41ad584d-00", + "traceparent": "00-9720c2ebee446446bea25b5e8a5c9e60-d62af98b06625349-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a7e54185fafe352bf1bf7be371ac3975", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "a7e54185-fafe-352b-f1bf-7be371ac3975", - "Date": "Mon, 01 Jun 2020 12:04:01 GMT", - "elapsed-time": "526", + "Date": "Fri, 26 Jun 2020 05:58:56 GMT", + "elapsed-time": "186", "Expires": "-1", "Pragma": "no-cache", "request-id": "a7e54185-fafe-352b-f1bf-7be371ac3975", @@ -139,9 +139,9 @@ ], "Variables": { "RandomSeed": "1347817798", - "SearchIndexName": "ababbqyr", + "SearchIndexName": "lrsccbue", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 ac47455d79ca..f228173b1818 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedDynamicDocumentAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027swtvuldi\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mktjqwds\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "962", "Content-Type": "application/json", - "traceparent": "00-27e4906ed0f7664fb616fc61c21f16ee-eba85ecc85ff8d4f-00", + "traceparent": "00-10e86176e997f948af77c2e514fd0636-32bcc4c4367d1041-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8363316349f54d2b909cd08d181068ae", "x-ms-return-client-request-id": "true" @@ -53,8 +53,8 @@ "client-request-id": "83633163-49f5-4d2b-909c-d08d181068ae", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:25 GMT", - "elapsed-time": "134", + "Date": "Fri, 26 Jun 2020 06:04:11 GMT", + "elapsed-time": "98", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -75,15 +75,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027swtvuldi\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mktjqwds\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3ac00a4fd36a5c44821d9e98a0d485bb-5e820ed39fbcf24f-00", + "traceparent": "00-5370e4e316c51643ad323ebd4b793167-8783418ce8070440-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ce0b4ac00085d030f1ea2ddc1d5a427d", "x-ms-return-client-request-id": "true" @@ -95,8 +95,8 @@ "client-request-id": "ce0b4ac0-0085-d030-f1ea-2ddc1d5a427d", "Content-Length": "940", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:28 GMT", - "elapsed-time": "37", + "Date": "Fri, 26 Jun 2020 06:04:13 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,15 +108,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027swtvuldi\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mktjqwds\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-da01dbdde543634d9db21daadfa96d0c-a2facc53ffe5f840-00", + "traceparent": "00-5473f4a103ee6649a6bd40ca8bb5b74b-f06ebd44a963ec46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "08f0ae6a80953d42543cf9077e3d28e5", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "08f0ae6a-8095-3d42-543c-f9077e3d28e5", - "Date": "Mon, 01 Jun 2020 12:05:28 GMT", - "elapsed-time": "574", + "Date": "Fri, 26 Jun 2020 06:04:13 GMT", + "elapsed-time": "229", "Expires": "-1", "Pragma": "no-cache", "request-id": "08f0ae6a-8095-3d42-543c-f9077e3d28e5", @@ -139,9 +139,9 @@ ], "Variables": { "RandomSeed": "1375466831", - "SearchIndexName": "swtvuldi", + "SearchIndexName": "mktjqwds", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 472e8a91d55b..675d9f2edd75 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocument.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027krucruku\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dfvnjhjs\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "962", "Content-Type": "application/json", - "traceparent": "00-4b421dc3ac96e6439302103f5334c48e-e2f89bcca5fcd743-00", + "traceparent": "00-73352df5ac504f41a68551bdbb247f80-193da5e7a96dd54d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "45bd018deeee3a730ce795272c4bd29b", "x-ms-return-client-request-id": "true" @@ -53,8 +53,8 @@ "client-request-id": "45bd018d-eeee-3a73-0ce7-95272c4bd29b", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:04 GMT", - "elapsed-time": "111", + "Date": "Fri, 26 Jun 2020 05:59:19 GMT", + "elapsed-time": "76", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -75,15 +75,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027krucruku\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dfvnjhjs\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-59986086e8d9eb41ab53bf95b7b7bc05-101ea1663d61e648-00", + "traceparent": "00-50e306e22ec8a64aa2f8f7bfc0cf0596-a1b3ff84b7867a4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2325cd1bf6fe19b379554259e2158a89", "x-ms-return-client-request-id": "true" @@ -95,8 +95,8 @@ "client-request-id": "2325cd1b-f6fe-19b3-7955-4259e2158a89", "Content-Length": "940", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:07 GMT", - "elapsed-time": "20", + "Date": "Fri, 26 Jun 2020 05:59:21 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,15 +108,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027krucruku\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dfvnjhjs\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-560cf293295a524b8f5c0384f50173ad-e3bc23bb4d6d554f-00", + "traceparent": "00-c5a4346a4f54a44e85dff8aa2cfe3fb4-2291ac6d7995f649-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8ccdbfa27fd5941ac7078ce17f2dd5f6", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "8ccdbfa2-7fd5-941a-c707-8ce17f2dd5f6", - "Date": "Mon, 01 Jun 2020 12:05:07 GMT", - "elapsed-time": "723", + "Date": "Fri, 26 Jun 2020 05:59:21 GMT", + "elapsed-time": "245", "Expires": "-1", "Pragma": "no-cache", "request-id": "8ccdbfa2-7fd5-941a-c707-8ce17f2dd5f6", @@ -139,9 +139,9 @@ ], "Variables": { "RandomSeed": "433827026", - "SearchIndexName": "krucruku", + "SearchIndexName": "dfvnjhjs", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e1b1439acdaf..12d94e6f4389 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RecentlyIndexedStaticDocumentAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wqkuxpja\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027despnwor\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "962", "Content-Type": "application/json", - "traceparent": "00-e010c54ffd0c324a9fa822cd0d0e6e10-de590b41c3b4e445-00", + "traceparent": "00-4a8874fe2f655641ac550ba0fdbb2f03-bd0d29fa358e7f42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aa5f713be58bf17803b0715e17f2aff2", "x-ms-return-client-request-id": "true" @@ -53,8 +53,8 @@ "client-request-id": "aa5f713b-e58b-f178-03b0-715e17f2aff2", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:35 GMT", - "elapsed-time": "93", + "Date": "Fri, 26 Jun 2020 06:04:37 GMT", + "elapsed-time": "84", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -75,15 +75,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wqkuxpja\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027despnwor\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-32bb27c3a27a5540b8c066d7236a731f-12dad64cce994b43-00", + "traceparent": "00-290d6f961ff5564e872a586e4621bb0e-d0ce4a8a1b175641-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "93de715e8cce15b225b9af5b7103eb25", "x-ms-return-client-request-id": "true" @@ -95,7 +95,7 @@ "client-request-id": "93de715e-8cce-15b2-25b9-af5b7103eb25", "Content-Length": "940", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:38 GMT", + "Date": "Fri, 26 Jun 2020 06:04:39 GMT", "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", @@ -108,15 +108,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wqkuxpja\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027despnwor\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-11b507a223fed54287d433c4edc5444d-cfb27209b0e48c4d-00", + "traceparent": "00-2b4fd0ec9e402b49b9f136c4a7e849b2-129b1290b8d67c4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3c0735ca040bd9897a3c734084c58a72", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "3c0735ca-040b-d989-7a3c-734084c58a72", - "Date": "Mon, 01 Jun 2020 12:05:38 GMT", - "elapsed-time": "510", + "Date": "Fri, 26 Jun 2020 06:04:39 GMT", + "elapsed-time": "219", "Expires": "-1", "Pragma": "no-cache", "request-id": "3c0735ca-040b-d989-7a3c-734084c58a72", @@ -139,9 +139,9 @@ ], "Variables": { "RandomSeed": "1353165967", - "SearchIndexName": "wqkuxpja", + "SearchIndexName": "despnwor", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 9f3ee4ccb41f..ce8f9bd5efe2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtc.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bbcunyhs\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lsgschgn\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "294", "Content-Type": "application/json", - "traceparent": "00-010f47555fa97f4f8fa2c05453d2d6dd-a830bf1b0ca98640-00", + "traceparent": "00-1f445262466e3249bbf6d3ff2f046a4a-55247ff6a6d0bb43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f7a4c22c78dddacfb1d808b89b0aec32", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "f7a4c22c-78dd-dacf-b1d8-08b89b0aec32", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:27:22 GMT", - "elapsed-time": "96", + "Date": "Fri, 26 Jun 2020 05:59:44 GMT", + "elapsed-time": "90", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bbcunyhs\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lsgschgn\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-e3cb02fd50058e42a29ad75bdb19bc39-81b975ae10ae8941-00", + "traceparent": "00-c11df85126a0d04fa51cb39423cabdce-e8fd7fc70294d948-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fd0641a31eab57b430547fefdad08e0b", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "fd0641a3-1eab-57b4-3054-7fefdad08e0b", "Content-Length": "243", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:27:24 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 05:59:46 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -111,15 +111,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bbcunyhs\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lsgschgn\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-07fa7d14918b2b4da581f5c841b93e42-48fbe4fcd7a8c543-00", + "traceparent": "00-66d2b9b8c8759d4da236e994e8dd4e82-280a94fadd9fe840-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9517b5720fdcf163424ab7950cc3a3d9", "x-ms-return-client-request-id": "true" @@ -129,8 +129,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "9517b572-0fdc-f163-424a-b7950cc3a3d9", - "Date": "Mon, 01 Jun 2020 11:27:26 GMT", - "elapsed-time": "667", + "Date": "Fri, 26 Jun 2020 05:59:46 GMT", + "elapsed-time": "328", "Expires": "-1", "Pragma": "no-cache", "request-id": "9517b572-0fdc-f163-424a-b7950cc3a3d9", @@ -142,9 +142,9 @@ ], "Variables": { "RandomSeed": "514352695", - "SearchIndexName": "bbcunyhs", + "SearchIndexName": "lsgschgn", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2fd8d0817a7d..a4033677a5c8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/RoundtripChangesToUtcAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027eiefinwm\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ssnnggll\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "294", "Content-Type": "application/json", - "traceparent": "00-99b01072fd1ad544b6d833b3aead4268-d60a86b3bda7a747-00", + "traceparent": "00-87a7089e00b6c8418c3df5ea4be9bdfa-577df8a63a293c40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "90ea827e2f761f83ac770431dcd23fc1", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "90ea827e-2f76-1f83-ac77-0431dcd23fc1", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:29:28 GMT", - "elapsed-time": "132", + "Date": "Fri, 26 Jun 2020 06:05:03 GMT", + "elapsed-time": "106", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027eiefinwm\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ssnnggll\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ff99100ffe421a42b6eceb324f4bce42-4cd55f407ee8894d-00", + "traceparent": "00-d7fa3aef3fa3a64a8e514f155f586d41-0cbdbc9b26a7b44b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "26d08ddb6c66331f89a7e6eef9859689", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "26d08ddb-6c66-331f-89a7-e6eef9859689", "Content-Length": "243", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:29:30 GMT", - "elapsed-time": "11", + "Date": "Fri, 26 Jun 2020 06:05:05 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -111,15 +111,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027eiefinwm\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ssnnggll\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f70a2560e9132f4c90dcfb74cf9a6c55-b9fc9cb3241faa42-00", + "traceparent": "00-4c9110b9fa2dc04998fa984260386f74-72e828959697f04c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c1c3aaec550ec72ede64a37b001da8ef", "x-ms-return-client-request-id": "true" @@ -129,8 +129,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "c1c3aaec-550e-c72e-de64-a37b001da8ef", - "Date": "Mon, 01 Jun 2020 11:29:30 GMT", - "elapsed-time": "567", + "Date": "Fri, 26 Jun 2020 06:05:05 GMT", + "elapsed-time": "241", "Expires": "-1", "Pragma": "no-cache", "request-id": "c1c3aaec-550e-c72e-de64-a37b001da8ef", @@ -142,9 +142,9 @@ ], "Variables": { "RandomSeed": "144595203", - "SearchIndexName": "eiefinwm", + "SearchIndexName": "ssnnggll", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 93e051548b1f..a51e9818c383 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtrips.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027htpcadqs\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tltavvme\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "624", "Content-Type": "application/json", - "traceparent": "00-4b11f12ef4c7cb45acacee0915ef5438-5bd1bf75a7b3094c-00", + "traceparent": "00-eaa0a89af204864f8e83e705a0d1b076-155b4a7cb57bc741-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ba72cae48d6b18784cff3b464ee836d8", "x-ms-return-client-request-id": "true" @@ -69,8 +69,8 @@ "client-request-id": "ba72cae4-8d6b-1878-4cff-3b464ee836d8", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:41:20 GMT", - "elapsed-time": "116", + "Date": "Fri, 26 Jun 2020 06:00:10 GMT", + "elapsed-time": "89", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -91,15 +91,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027htpcadqs\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tltavvme\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7141dcf9e0b736418043985734b148cd-13761a7667ccd343-00", + "traceparent": "00-f1ad1b02a150734d9f78e89e880e2dbe-fcc55a88f3f87f47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "798ede94329eb9a297a83d07640f2343", "x-ms-return-client-request-id": "true" @@ -111,8 +111,8 @@ "client-request-id": "798ede94-329e-b9a2-97a8-3d07640f2343", "Content-Length": "586", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:41:22 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 06:00:12 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -165,15 +165,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027htpcadqs\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tltavvme\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-71145ccf6e42414da5d29d1bd3141baf-6126323226557445-00", + "traceparent": "00-55d081b20e848446bfe24044d7e5601e-59ea7ed7e981604f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0096144fd0940abcb7d25585213b4dd6", "x-ms-return-client-request-id": "true" @@ -183,8 +183,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "0096144f-d094-0abc-b7d2-5585213b4dd6", - "Date": "Mon, 01 Jun 2020 11:41:22 GMT", - "elapsed-time": "506", + "Date": "Fri, 26 Jun 2020 06:00:12 GMT", + "elapsed-time": "185", "Expires": "-1", "Pragma": "no-cache", "request-id": "0096144f-d094-0abc-b7d2-5585213b4dd6", @@ -196,9 +196,9 @@ ], "Variables": { "RandomSeed": "226392841", - "SearchIndexName": "htpcadqs", + "SearchIndexName": "tltavvme", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 633baadbf679..780b4c9ead6c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StaticDocumentWithNullsRoundtripsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ypvyesat\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mxqqnppv\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "624", "Content-Type": "application/json", - "traceparent": "00-e0508f5425e9bb4387c5d72619d21819-281d6b6740bd354d-00", + "traceparent": "00-ed17feaffbffd8478fe20b9d0ec78bb6-1648046356106b48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2e413dc21dec5a9ca767cde11dd6490b", "x-ms-return-client-request-id": "true" @@ -69,8 +69,8 @@ "client-request-id": "2e413dc2-1dec-5a9c-a767-cde11dd6490b", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:29:54 GMT", - "elapsed-time": "103", + "Date": "Fri, 26 Jun 2020 06:05:28 GMT", + "elapsed-time": "81", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -91,15 +91,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ypvyesat\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mxqqnppv\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-15f0c469007eb24fa52984f9c56bc4ac-e8fd5395a6bbf84a-00", + "traceparent": "00-3dc3db3d8054424b84026f56afcdf0db-c140830ffbed4047-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cb53b580bced7b11d26d24c4ff60a775", "x-ms-return-client-request-id": "true" @@ -111,8 +111,8 @@ "client-request-id": "cb53b580-bced-7b11-d26d-24c4ff60a775", "Content-Length": "586", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:29:56 GMT", - "elapsed-time": "12", + "Date": "Fri, 26 Jun 2020 06:05:31 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -165,15 +165,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ypvyesat\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mxqqnppv\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7506133ece1fbb4094fc8eb121ab3a85-82e6a6f1b575c34c-00", + "traceparent": "00-06184396ee74bd4786b2ffcf0a46dbdf-cbb8f5ce4344f547-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7a0fd72aa46936dc021a6df6098bddcc", "x-ms-return-client-request-id": "true" @@ -183,8 +183,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "7a0fd72a-a469-36dc-021a-6df6098bddcc", - "Date": "Mon, 01 Jun 2020 11:29:56 GMT", - "elapsed-time": "529", + "Date": "Fri, 26 Jun 2020 06:05:31 GMT", + "elapsed-time": "187", "Expires": "-1", "Pragma": "no-cache", "request-id": "7a0fd72a-a469-36dc-021a-6df6098bddcc", @@ -196,9 +196,9 @@ ], "Variables": { "RandomSeed": "136068368", - "SearchIndexName": "ypvyesat", + "SearchIndexName": "mxqqnppv", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a78f75f893e7..d7769f8bf030 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/Structs.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027sckqgtxr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027axjqdogx\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "77", "Content-Type": "application/json", - "traceparent": "00-ce4567ddd75ab840b2ff0146e8ea504d-d667e6100da3f548-00", + "traceparent": "00-ae6ae317907a414d9ba2b1b552e912bb-661edf28ac08e340-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eb3f3216b0de1bf6125f047abab79f2a", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "eb3f3216-b0de-1bf6-125f-047abab79f2a", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:45:35 GMT", - "elapsed-time": "142", + "Date": "Fri, 26 Jun 2020 06:00:35 GMT", + "elapsed-time": "123", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "eb3f3216-b0de-1bf6-125f-047abab79f2a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "eb3f3216-b0de-1bf6-125f-047abab79f2a" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027sckqgtxr\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027axjqdogx\u0027)/docs(\u00274\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-54eecef9d554d048a609058bd2f69606-58bb24b60f3c4944-00", + "traceparent": "00-214295d3e784bf4ba26d3be471eb97de-2bc01b0d3a184d44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "616d0353a8077dbe8775e6cb950c62f3", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "616d0353-a807-7dbe-8775-e6cb950c62f3", "Content-Length": "232", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:45:37 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:00:36 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "616d0353-a807-7dbe-8775-e6cb950c62f3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "616d0353-a807-7dbe-8775-e6cb950c62f3" }, "ResponseBody": { "hotelId": "4", @@ -96,15 +100,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027sckqgtxr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027axjqdogx\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-92e2398c67942a43a6f608248601a026-4874d9a77f499d41-00", + "traceparent": "00-b177ea9e3d419a48931f40de1871cb03-ebc31e459eaf1c4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1445617c8ef38333059250742aeea463", "x-ms-return-client-request-id": "true" @@ -113,21 +117,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:45:37 GMT", - "elapsed-time": "252", + "client-request-id": "1445617c-8ef3-8333-0592-50742aeea463", + "Date": "Fri, 26 Jun 2020 06:00:37 GMT", + "elapsed-time": "196", "Expires": "-1", "Pragma": "no-cache", "request-id": "1445617c-8ef3-8333-0592-50742aeea463", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1445617c-8ef3-8333-0592-50742aeea463" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "10321260", - "SearchIndexName": "sckqgtxr", + "SearchIndexName": "axjqdogx", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 1a692a94f9e6..01e1b2d31c0c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/StructsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fyyccjha\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qwrexawe\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "77", "Content-Type": "application/json", - "traceparent": "00-51e4c3b43b801646be5b065da2d0f39d-46fc4db82e712c42-00", + "traceparent": "00-610ea819cbfcf94ea3e1469450bd4e51-2f09e6e4d4bcb04b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f8569a8bc0f887882f6e1e542d8f7ef1", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f8569a8b-c0f8-8788-2f6e-1e542d8f7ef1", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:50:15 GMT", - "elapsed-time": "110", + "Date": "Fri, 26 Jun 2020 06:05:54 GMT", + "elapsed-time": "107", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f8569a8b-c0f8-8788-2f6e-1e542d8f7ef1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f8569a8b-c0f8-8788-2f6e-1e542d8f7ef1" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fyyccjha\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qwrexawe\u0027)/docs(\u00274\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-334271cd82f53d4ea2f900c1154848c7-2ffa75f51d3e694d-00", + "traceparent": "00-6e0dbcf1e5aecd43923a60a762e66db4-701b63b884e59244-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "08f24fcba546d2cdd5e339e31a9cdc02", "x-ms-return-client-request-id": "true" @@ -68,16 +70,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "08f24fcb-a546-d2cd-d5e3-39e31a9cdc02", "Content-Length": "232", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:50:16 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:05:56 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "08f24fcb-a546-d2cd-d5e3-39e31a9cdc02", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "08f24fcb-a546-d2cd-d5e3-39e31a9cdc02" }, "ResponseBody": { "hotelId": "4", @@ -96,15 +100,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fyyccjha\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qwrexawe\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-766d9cd7ae5e2b4f88c96d4db7a74866-78f28df2a4eba046-00", + "traceparent": "00-c993ec41940f0c419232010a5ce87e1c-5a9b0d3744d38b4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4e1f75e881d9d1bc5cf56155c9c1070a", "x-ms-return-client-request-id": "true" @@ -113,21 +117,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:50:16 GMT", - "elapsed-time": "194", + "client-request-id": "4e1f75e8-81d9-d1bc-5cf5-6155c9c1070a", + "Date": "Fri, 26 Jun 2020 06:05:56 GMT", + "elapsed-time": "338", "Expires": "-1", "Pragma": "no-cache", "request-id": "4e1f75e8-81d9-d1bc-5cf5-6155c9c1070a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4e1f75e8-81d9-d1bc-5cf5-6155c9c1070a" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1461814314", - "SearchIndexName": "fyyccjha", + "SearchIndexName": "qwrexawe", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 05fbff6d3cb9..a6ccaf2f9f0f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformed.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3b4857a999273e4a841d8a80cb48f757-e3af2baf5f096949-00", + "traceparent": "00-2b83db913528cc45bc3083c5f10ede01-a6891b83bd6f544e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c1ac8ecf967c99f1d9fe44cf54d99bb0", "x-ms-return-client-request-id": "true" @@ -18,17 +18,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c1ac8ecf-967c-99f1-d9fe-44cf54d99bb0", "Content-Language": "en", "Content-Length": "163", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:45:37 GMT", - "elapsed-time": "77", + "Date": "Fri, 26 Jun 2020 06:00:39 GMT", + "elapsed-time": "56", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c1ac8ecf-967c-99f1-d9fe-44cf54d99bb0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c1ac8ecf-967c-99f1-d9fe-44cf54d99bb0" }, "ResponseBody": { "error": { @@ -40,8 +42,8 @@ ], "Variables": { "RandomSeed": "1662283179", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 4585d1040960..26454824ff53 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenMalformedAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00273\u0027)?$select=ThisFieldDoesNotExist\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-77259d45d6b3ca4a817dc153a3b57894-c930700347e98e42-00", + "traceparent": "00-f85ed066ef8ec649be21d94c801db67e-b9d4128f1033d944-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bb82e378638212a3a45f376d050084d6", "x-ms-return-client-request-id": "true" @@ -18,17 +18,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bb82e378-6382-12a3-a45f-376d050084d6", "Content-Language": "en", "Content-Length": "163", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:50:16 GMT", - "elapsed-time": "75", + "Date": "Fri, 26 Jun 2020 06:05:59 GMT", + "elapsed-time": "53", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bb82e378-6382-12a3-a45f-376d050084d6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bb82e378-6382-12a3-a45f-376d050084d6" }, "ResponseBody": { "error": { @@ -40,8 +42,8 @@ ], "Variables": { "RandomSeed": "335380653", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 4a8defa83ea3..9dfa182c1a25 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFound.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-07af9a223e2ea946be091e570f75923b-18821c7c7c6e774b-00", + "traceparent": "00-b313e15c0d9655439c149908059f961c-2fbf810de1df5a4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ba21e91c66faa803c9d44523eaf36c73", "x-ms-return-client-request-id": "true" @@ -18,21 +18,23 @@ "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "ba21e91c-66fa-a803-c9d4-4523eaf36c73", "Content-Length": "0", - "Date": "Fri, 08 May 2020 06:45:37 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:00:39 GMT", + "elapsed-time": "5", "Expires": "-1", "Pragma": "no-cache", "request-id": "ba21e91c-66fa-a803-c9d4-4523eaf36c73", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ba21e91c-66fa-a803-c9d4-4523eaf36c73" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "500232658", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f9e1e7d43022..107bde2b7912 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/ThrowsWhenNotFoundAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u0027ThisDocumentDoesNotExist\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-165676df0f692e4085ccbb37ebdf6690-4e14e67ddd225b42-00", + "traceparent": "00-98e70fc47b193a4aa75544df1c6b0e9c-61e20e67b5486046-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aee8edee2b291e361337583140d47761", "x-ms-return-client-request-id": "true" @@ -18,21 +18,23 @@ "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "aee8edee-2b29-1e36-1337-583140d47761", "Content-Length": "0", - "Date": "Fri, 08 May 2020 06:50:16 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:05:59 GMT", + "elapsed-time": "3", "Expires": "-1", "Pragma": "no-cache", "request-id": "aee8edee-2b29-1e36-1337-583140d47761", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "aee8edee-2b29-1e36-1337-583140d47761" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "447408589", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 331a96426de2..de86462da39f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStatic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027mfcflcgs\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uvrnceja\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1458", "Content-Type": "application/json", - "traceparent": "00-1054a82ad5271b469eff7e51976c1720-0a33d6e5ce8fa74e-00", + "traceparent": "00-147da810b86e28489cbd6b0b227c28d7-5d47bb13e429ce42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d39c287266957a8ebdbeb57b7564a066", "x-ms-return-client-request-id": "true" @@ -83,8 +83,8 @@ "client-request-id": "d39c2872-6695-7a8e-bdbe-b57b7564a066", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:15 GMT", - "elapsed-time": "102", + "Date": "Fri, 26 Jun 2020 06:01:13 GMT", + "elapsed-time": "137", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -105,15 +105,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027mfcflcgs\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uvrnceja\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-fca13401e1100141a31f9f42a370228f-ed8bc2c8d3aefe42-00", + "traceparent": "00-fdf6dce33d1023468aadea749406b659-a7be8b7ed9128240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3837244195ad9b6302a4eb63dab94f32", "x-ms-return-client-request-id": "true" @@ -125,8 +125,8 @@ "client-request-id": "38372441-95ad-9b63-02a4-eb63dab94f32", "Content-Length": "288", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:17 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:01:15 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -135,18 +135,32 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "x-ms-client-request-id": "38372441-95ad-9b63-02a4-eb63dab94f32" }, - "ResponseBody": "{\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022address\u0022:{\u0022city\u0022:\u0022Durham\u0022},\u0022rooms\u0022:[{\u0022baseRate\u0022:2.44},{\u0022baseRate\u0022:7.69}]}" + "ResponseBody": { + "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": { + "city": "Durham" + }, + "rooms": [ + { + "baseRate": 2.44 + }, + { + "baseRate": 7.69 + } + ] + } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027mfcflcgs\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027uvrnceja\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5167f74a2b49bb4f99309549f1ed59b2-0f02b0ba9d940343-00", + "traceparent": "00-17970a6b35732843bb57b9b630749536-38420d4e55f43648-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7252a83a77138fbb185a69f8f222e0a6", "x-ms-return-client-request-id": "true" @@ -156,8 +170,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "7252a83a-7713-8fbb-185a-69f8f222e0a6", - "Date": "Mon, 01 Jun 2020 12:05:17 GMT", - "elapsed-time": "897", + "Date": "Fri, 26 Jun 2020 06:01:15 GMT", + "elapsed-time": "265", "Expires": "-1", "Pragma": "no-cache", "request-id": "7252a83a-7713-8fbb-185a-69f8f222e0a6", @@ -169,9 +183,9 @@ ], "Variables": { "RandomSeed": "1560836648", - "SearchIndexName": "mfcflcgs", + "SearchIndexName": "uvrnceja", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 db971c08027c..c48e467ad33c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/GetDocumentTests/UnselectedFieldsNullStaticAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027uuimiwom\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027otxpnobx\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1458", "Content-Type": "application/json", - "traceparent": "00-62f986e7d8fe1e45b8fcd511bf31c12e-b87f93273684504b-00", + "traceparent": "00-621dcdff99d9db4798da92f81c151336-b5d08ba415fda34d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4601d57268f632293dd1260264c08611", "x-ms-return-client-request-id": "true" @@ -83,8 +83,8 @@ "client-request-id": "4601d572-68f6-3229-3dd1-260264c08611", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:45 GMT", - "elapsed-time": "100", + "Date": "Fri, 26 Jun 2020 06:06:19 GMT", + "elapsed-time": "79", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -105,15 +105,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027uuimiwom\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027otxpnobx\u0027)/docs(\u00272\u0027)?$select=description%2ChotelName%2Caddress%2Fcity%2Crooms%2FbaseRate\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b2948efadc6d7547ad8266c08b2b4888-6fe354fef7eb5f4c-00", + "traceparent": "00-2c7c4b9b320db84285575cda40ddc8fa-b1abc70f77adfb4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "630df8ec3f929a8179bffcb17ecb2dbb", "x-ms-return-client-request-id": "true" @@ -125,8 +125,8 @@ "client-request-id": "630df8ec-3f92-9a81-79bf-fcb17ecb2dbb", "Content-Length": "288", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:47 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 06:06:21 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -135,18 +135,32 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "x-ms-client-request-id": "630df8ec-3f92-9a81-79bf-fcb17ecb2dbb" }, - "ResponseBody": "{\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022address\u0022:{\u0022city\u0022:\u0022Durham\u0022},\u0022rooms\u0022:[{\u0022baseRate\u0022:2.44},{\u0022baseRate\u0022:7.69}]}" + "ResponseBody": { + "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": { + "city": "Durham" + }, + "rooms": [ + { + "baseRate": 2.44 + }, + { + "baseRate": 7.69 + } + ] + } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027uuimiwom\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027otxpnobx\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-9dcb347b33febf408d0ad71c82ca442e-d9a685fccce3b242-00", + "traceparent": "00-ed3caaded839914da8e89118a6ec729d-79163955be41814d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ffc541c8c037b5bd6ff1a35b4863fc4b", "x-ms-return-client-request-id": "true" @@ -156,8 +170,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "ffc541c8-c037-b5bd-6ff1-a35b4863fc4b", - "Date": "Mon, 01 Jun 2020 12:05:47 GMT", - "elapsed-time": "534", + "Date": "Fri, 26 Jun 2020 06:06:21 GMT", + "elapsed-time": "190", "Expires": "-1", "Pragma": "no-cache", "request-id": "ffc541c8-c037-b5bd-6ff1-a35b4863fc4b", @@ -169,9 +183,9 @@ ], "Variables": { "RandomSeed": "495263731", - "SearchIndexName": "uuimiwom", + "SearchIndexName": "otxpnobx", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e3e1ef325c2c..ba2f699944de 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-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4b6405bb4fdcb9544c0fdf174384b8eb", "x-ms-return-client-request-id": "true" @@ -17,19 +17,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "4b6405bb-4fdc-b954-4c0f-df174384b8eb", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "78", + "Date": "Fri, 26 Jun 2020 06:20:13 GMT", + "elapsed-time": "226", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4b6405bb-4fdc-b954-4c0f-df174384b8eb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4b6405bb-4fdc-b954-4c0f-df174384b8eb" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -48,16 +50,12 @@ "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37093, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -71,8 +69,8 @@ ], "Variables": { "RandomSeed": "2134332413", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsync.json index d19beebffb6f..97e7a3a8f784 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "api-key": "Sanitized", @@ -74,4 +74,4 @@ "SearchIndexName": "grurisvf", "SearchServiceName": "azs-net-gjxdhkdl" } -} \ 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 356b75c685ea..9a41c379e797 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateClientAsyncAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f5f5485afcc75f4e8dae005dec0966ca-9b19306a5355b04b-00", + "traceparent": "00-6a8e74eed65acb419bf748d28cd18bd2-5249d3cdc1148242-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a029684f073e794ac0638ad34807c434", "x-ms-return-client-request-id": "true" @@ -18,19 +18,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "a029684f-073e-794a-c063-8ad34807c434", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:01:33 GMT", - "elapsed-time": "50", + "Date": "Fri, 26 Jun 2020 06:20:13 GMT", + "elapsed-time": "190", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a029684f-073e-794a-c063-8ad34807c434", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a029684f-073e-794a-c063-8ad34807c434" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -49,16 +51,12 @@ "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37093, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -72,8 +70,8 @@ ], "Variables": { "RandomSeed": "525186745", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateIndexerAsyncAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateIndexerAsyncAsync.json index eb7f7330bcd8..d6e6905f5b4d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateIndexerAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/CreateIndexerAsyncAsync.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "5201", "Content-Type": "application/json", - "traceparent": "00-8bffaf53821011409d8482ee1ffc6d4b-db97c0cfa9b7304d-00", + "traceparent": "00-8b592788d3f01040afd82f9238fb4040-4ec318b00b827347-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ba38d5451a7aadea001f98d4a4cdd32c", @@ -27,11 +27,11 @@ "client-request-id": "ba38d545-1a7a-adea-001f-98d4a4cdd32c", "Content-Length": "5342", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Tue, 23 Jun 2020 18:03:49 GMT", - "elapsed-time": "37", - "ETag": "W/\u00220x8D8179FC8169468\u0022", + "Date": "Fri, 26 Jun 2020 07:20:10 GMT", + "elapsed-time": "33", + "ETag": "W/\u00220x8D819A15D3326C0\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027yawilrdj\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027yawilrdj\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -39,19 +39,19 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "x-ms-client-request-id": "ba38d545-1a7a-adea-001f-98d4a4cdd32c" }, - "ResponseBody": "{\u0022@odata.context\u0022:\u0022https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity\u0022,\u0022@odata.etag\u0022:\u0022\\\u00220x8D8179FC8169468\\\u0022\u0022,\u0022name\u0022:\u0022yawilrdj\u0022,\u0022format\u0022:\u0022solr\u0022,\u0022synonyms\u0022:\u0022Afghanistan,AF,AFG\\n\\u00c5land Islands,AX,ALA\\nAlbania,AL,ALB\\nAlgeria,DZ,DZA\\nAmerican Samoa,AS,ASM\\nAndorra,AD,AND\\nAngola,AO,AGO\\nAnguilla,AI,AIA\\nAntarctica,AQ,ATA\\nAntigua and Barbuda,AG,ATG\\nArgentina,AR,ARG\\nArmenia,AM,ARM\\nAruba,AW,ABW\\nAustralia,AU,AUS\\nAustria,AT,AUT\\nAzerbaijan,AZ,AZE\\nBahamas,BS,BHS\\nBahrain,BH,BHR\\nBangladesh,BD,BGD\\nBarbados,BB,BRB\\nBelarus,BY,BLR\\nBelgium,BE,BEL\\nBelize,BZ,BLZ\\nBenin,BJ,BEN\\nBermuda,BM,BMU\\nBhutan,BT,BTN\\nBolivia,Plurinational State of Bolivia,BO,BOL\\nBonaire,Sint Eustatius and Saba,BQ,BES\\nBosnia and Herzegovina,BA,BIH\\nBotswana,BW,BWA\\nBouvet Island,BV,BVT\\nBrazil,BR,BRA\\nBritish Indian Ocean Territory,IO,IOT\\nBrunei Darussalam,BN,BRN\\nBulgaria,BG,BGR\\nBurkina Faso,BF,BFA\\nBurundi,BI,BDI\\nCabo Verde,CV,CPV\\nCambodia,KH,KHM\\nCameroon,CM,CMR\\nCanada,CA,CAN\\nCayman Islands,KY,CYM\\nCentral African Republic,CF,CAF\\nChad,TD,TCD\\nChile,CL,CHL\\nChina,CN,CHN\\nChristmas Island,CX,CXR\\nCocos (Keeling) Islands,CC,CCK\\nColombia,CO,COL\\nComoros,KM,COM\\nCongo,CG,COG\\nDemocratic Republic of the Congo,CD,COD\\nCook Islands,CK,COK\\nCosta Rica,CR,CRI\\nC\\u00f4te d\u0027Ivoire,CI,CIV\\nCroatia,HR,HRV\\nCuba,CU,CUB\\nCura\\u00e7ao,CW,CUW\\nCyprus,CY,CYP\\nCzechia,CZ,CZE\\nDenmark,DK,DNK\\nDjibouti,DJ,DJI\\nDominica,DM,DMA\\nDominican Republic,DO,DOM\\nEcuador,EC,ECU\\nEgypt,EG,EGY\\nEl Salvador,SV,SLV\\nEquatorial Guinea,GQ,GNQ\\nEritrea,ER,ERI\\nEstonia,EE,EST\\nEswatini,SZ,SWZ\\nEthiopia,ET,ETH\\nFalkland Islands (Malvinas),FK,FLK\\nFaroe Islands,FO,FRO\\nFiji,FJ,FJI\\nFinland,FI,FIN\\nFrance,FR,FRA\\nFrench Guiana,GF,GUF\\nFrench Polynesia,PF,PYF\\nFrench Southern Territories,TF,ATF\\nGabon,GA,GAB\\nGambia,GM,GMB\\nGeorgia,GE,GEO\\nGermany,DE,DEU\\nGhana,GH,GHA\\nGibraltar,GI,GIB\\nGreece,GR,GRC\\nGreenland,GL,GRL\\nGrenada,GD,GRD\\nGuadeloupe,GP,GLP\\nGuam,GU,GUM\\nGuatemala,GT,GTM\\nGuernsey,GG,GGY\\nGuinea,GN,GIN\\nGuinea-Bissau,GW,GNB\\nGuyana,GY,GUY\\nHaiti,HT,HTI\\nHeard Island and McDonald Islands,HM,HMD\\nHoly See,VA,VAT\\nHonduras,HN,HND\\nHong Kong,HK,HKG\\nHungary,HU,HUN\\nIceland,IS,ISL\\nIndia,IN,IND\\nIndonesia,ID,IDN\\nIran,Islamic Republic of Iran,IR,IRN\\nIraq,IQ,IRQ\\nIreland,IE,IRL\\nIsle of Man,IM,IMN\\nIsrael,IL,ISR\\nItaly,IT,ITA\\nJamaica,JM,JAM\\nJapan,JP,JPN\\nJersey,JE,JEY\\nJordan,JO,JOR\\nKazakhstan,KZ,KAZ\\nKenya,KE,KEN\\nKiribati,KI,KIR\\nDemocratic People\u0027s Republic of Korea,KP,PRK\\nKorea,Republic of Korea,KR,KOR\\nKuwait,KW,KWT\\nKyrgyzstan,KG,KGZ\\nLao People\u0027s Democratic Republic,LA,LAO\\nLatvia,LV,LVA\\nLebanon,LB,LBN\\nLesotho,LS,LSO\\nLiberia,LR,LBR\\nLibya,LY,LBY\\nLiechtenstein,LI,LIE\\nLithuania,LT,LTU\\nLuxembourg,LU,LUX\\nMacao,MO,MAC\\nMadagascar,MG,MDG\\nMalawi,MW,MWI\\nMalaysia,MY,MYS\\nMaldives,MV,MDV\\nMali,ML,MLI\\nMalta,MT,MLT\\nMarshall Islands,MH,MHL\\nMartinique,MQ,MTQ\\nMauritania,MR,MRT\\nMauritius,MU,MUS\\nMayotte,YT,MYT\\nMexico,MX,MEX\\nMicronesia,Federated States of Micronesia,FM,FSM\\nMoldova,Republic of Moldova,MD,MDA\\nMonaco,MC,MCO\\nMongolia,MN,MNG\\nMontenegro,ME,MNE\\nMontserrat,MS,MSR\\nMorocco,MA,MAR\\nMozambique,MZ,MOZ\\nMyanmar,MM,MMR\\nNamibia,NA,NAM\\nNauru,NR,NRU\\nNepal,NP,NPL\\nNetherlands,NL,NLD\\nNew Caledonia,NC,NCL\\nNew Zealand,NZ,NZL\\nNicaragua,NI,NIC\\nNiger,NE,NER\\nNigeria,NG,NGA\\nNiue,NU,NIU\\nNorfolk Island,NF,NFK\\nNorth Macedonia,MK,MKD\\nNorthern Mariana Islands,MP,MNP\\nNorway,NO,NOR\\nOman,OM,OMN\\nPakistan,PK,PAK\\nPalau,PW,PLW\\nPalestine,State of Palestine,PS,PSE\\nPanama,PA,PAN\\nPapua New Guinea,PG,PNG\\nParaguay,PY,PRY\\nPeru,PE,PER\\nPhilippines,PH,PHL\\nPitcairn,PN,PCN\\nPoland,PL,POL\\nPortugal,PT,PRT\\nPuerto Rico,PR,PRI\\nQatar,QA,QAT\\nR\\u00e9union,RE,REU\\nRomania,RO,ROU\\nRussia,Russian Federation,RU,RUS\\nRwanda,RW,RWA\\nSaint Barth\\u00e9lemy,BL,BLM\\nSaint Helena,Ascension and Tristan da Cunha,SH,SHN\\nSaint Kitts and Nevis,KN,KNA\\nSaint Lucia,LC,LCA\\nSaint Martin (French part),MF,MAF\\nSaint Pierre and Miquelon,PM,SPM\\nSaint Vincent and the Grenadines,VC,VCT\\nSamoa,WS,WSM\\nSan Marino,SM,SMR\\nSao Tome and Principe,ST,STP\\nSaudi Arabia,SA,SAU\\nSenegal,SN,SEN\\nSerbia,RS,SRB\\nSeychelles,SC,SYC\\nSierra Leone,SL,SLE\\nSingapore,SG,SGP\\nSint Maarten (Dutch part),SX,SXM\\nSlovakia,SK,SVK\\nSlovenia,SI,SVN\\nSolomon Islands,SB,SLB\\nSomalia,SO,SOM\\nSouth Africa,ZA,ZAF\\nSouth Georgia and the South Sandwich Islands,GS,SGS\\nSouth Sudan,SS,SSD\\nSpain,ES,ESP\\nSri Lanka,LK,LKA\\nSudan,SD,SDN\\nSuriname,SR,SUR\\nSvalbard and Jan Mayen,SJ,SJM\\nSweden,SE,SWE\\nSwitzerland,CH,CHE\\nSyrian Arab Republic,SY,SYR\\nTaiwan,Province of China,TW,TWN\\nTajikistan,TJ,TJK\\nTanzania,United Republic of Tanzania,TZ,TZA\\nThailand,TH,THA\\nTimor-Leste,TL,TLS\\nTogo,TG,TGO\\nTokelau,TK,TKL\\nTonga,TO,TON\\nTrinidad and Tobago,TT,TTO\\nTunisia,TN,TUN\\nTurkey,TR,TUR\\nTurkmenistan,TM,TKM\\nTurks and Caicos Islands,TC,TCA\\nTuvalu,TV,TUV\\nUganda,UG,UGA\\nUkraine,UA,UKR\\nUnited Arab Emirates,AE,ARE\\nUnited Kingdom of Great Britain and Northern Ireland,GB,GBR\\nUnited States of America,US,USA\\nUnited States Minor Outlying Islands,UM,UMI\\nUruguay,UY,URY\\nUzbekistan,UZ,UZB\\nVanuatu,VU,VUT\\nVenezuela (Bolivarian Republic of),VE,VEN\\nViet Nam,VN,VNM\\nVirgin Islands (British),VG,VGB\\nVirgin Islands (U.S.),VI,VIR\\nWallis and Futuna,WF,WLF\\nWestern Sahara,EH,ESH\\nYemen,YE,YEM\\nZambia,ZM,ZMB\\nZimbabwe,ZW,ZWE\\n\u0022,\u0022encryptionKey\u0022:null}" + "ResponseBody": "{\u0022@odata.context\u0022:\u0022https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity\u0022,\u0022@odata.etag\u0022:\u0022\\\u00220x8D819A15D3326C0\\\u0022\u0022,\u0022name\u0022:\u0022yawilrdj\u0022,\u0022format\u0022:\u0022solr\u0022,\u0022synonyms\u0022:\u0022Afghanistan,AF,AFG\\n\\u00c5land Islands,AX,ALA\\nAlbania,AL,ALB\\nAlgeria,DZ,DZA\\nAmerican Samoa,AS,ASM\\nAndorra,AD,AND\\nAngola,AO,AGO\\nAnguilla,AI,AIA\\nAntarctica,AQ,ATA\\nAntigua and Barbuda,AG,ATG\\nArgentina,AR,ARG\\nArmenia,AM,ARM\\nAruba,AW,ABW\\nAustralia,AU,AUS\\nAustria,AT,AUT\\nAzerbaijan,AZ,AZE\\nBahamas,BS,BHS\\nBahrain,BH,BHR\\nBangladesh,BD,BGD\\nBarbados,BB,BRB\\nBelarus,BY,BLR\\nBelgium,BE,BEL\\nBelize,BZ,BLZ\\nBenin,BJ,BEN\\nBermuda,BM,BMU\\nBhutan,BT,BTN\\nBolivia,Plurinational State of Bolivia,BO,BOL\\nBonaire,Sint Eustatius and Saba,BQ,BES\\nBosnia and Herzegovina,BA,BIH\\nBotswana,BW,BWA\\nBouvet Island,BV,BVT\\nBrazil,BR,BRA\\nBritish Indian Ocean Territory,IO,IOT\\nBrunei Darussalam,BN,BRN\\nBulgaria,BG,BGR\\nBurkina Faso,BF,BFA\\nBurundi,BI,BDI\\nCabo Verde,CV,CPV\\nCambodia,KH,KHM\\nCameroon,CM,CMR\\nCanada,CA,CAN\\nCayman Islands,KY,CYM\\nCentral African Republic,CF,CAF\\nChad,TD,TCD\\nChile,CL,CHL\\nChina,CN,CHN\\nChristmas Island,CX,CXR\\nCocos (Keeling) Islands,CC,CCK\\nColombia,CO,COL\\nComoros,KM,COM\\nCongo,CG,COG\\nDemocratic Republic of the Congo,CD,COD\\nCook Islands,CK,COK\\nCosta Rica,CR,CRI\\nC\\u00f4te d\u0027Ivoire,CI,CIV\\nCroatia,HR,HRV\\nCuba,CU,CUB\\nCura\\u00e7ao,CW,CUW\\nCyprus,CY,CYP\\nCzechia,CZ,CZE\\nDenmark,DK,DNK\\nDjibouti,DJ,DJI\\nDominica,DM,DMA\\nDominican Republic,DO,DOM\\nEcuador,EC,ECU\\nEgypt,EG,EGY\\nEl Salvador,SV,SLV\\nEquatorial Guinea,GQ,GNQ\\nEritrea,ER,ERI\\nEstonia,EE,EST\\nEswatini,SZ,SWZ\\nEthiopia,ET,ETH\\nFalkland Islands (Malvinas),FK,FLK\\nFaroe Islands,FO,FRO\\nFiji,FJ,FJI\\nFinland,FI,FIN\\nFrance,FR,FRA\\nFrench Guiana,GF,GUF\\nFrench Polynesia,PF,PYF\\nFrench Southern Territories,TF,ATF\\nGabon,GA,GAB\\nGambia,GM,GMB\\nGeorgia,GE,GEO\\nGermany,DE,DEU\\nGhana,GH,GHA\\nGibraltar,GI,GIB\\nGreece,GR,GRC\\nGreenland,GL,GRL\\nGrenada,GD,GRD\\nGuadeloupe,GP,GLP\\nGuam,GU,GUM\\nGuatemala,GT,GTM\\nGuernsey,GG,GGY\\nGuinea,GN,GIN\\nGuinea-Bissau,GW,GNB\\nGuyana,GY,GUY\\nHaiti,HT,HTI\\nHeard Island and McDonald Islands,HM,HMD\\nHoly See,VA,VAT\\nHonduras,HN,HND\\nHong Kong,HK,HKG\\nHungary,HU,HUN\\nIceland,IS,ISL\\nIndia,IN,IND\\nIndonesia,ID,IDN\\nIran,Islamic Republic of Iran,IR,IRN\\nIraq,IQ,IRQ\\nIreland,IE,IRL\\nIsle of Man,IM,IMN\\nIsrael,IL,ISR\\nItaly,IT,ITA\\nJamaica,JM,JAM\\nJapan,JP,JPN\\nJersey,JE,JEY\\nJordan,JO,JOR\\nKazakhstan,KZ,KAZ\\nKenya,KE,KEN\\nKiribati,KI,KIR\\nDemocratic People\u0027s Republic of Korea,KP,PRK\\nKorea,Republic of Korea,KR,KOR\\nKuwait,KW,KWT\\nKyrgyzstan,KG,KGZ\\nLao People\u0027s Democratic Republic,LA,LAO\\nLatvia,LV,LVA\\nLebanon,LB,LBN\\nLesotho,LS,LSO\\nLiberia,LR,LBR\\nLibya,LY,LBY\\nLiechtenstein,LI,LIE\\nLithuania,LT,LTU\\nLuxembourg,LU,LUX\\nMacao,MO,MAC\\nMadagascar,MG,MDG\\nMalawi,MW,MWI\\nMalaysia,MY,MYS\\nMaldives,MV,MDV\\nMali,ML,MLI\\nMalta,MT,MLT\\nMarshall Islands,MH,MHL\\nMartinique,MQ,MTQ\\nMauritania,MR,MRT\\nMauritius,MU,MUS\\nMayotte,YT,MYT\\nMexico,MX,MEX\\nMicronesia,Federated States of Micronesia,FM,FSM\\nMoldova,Republic of Moldova,MD,MDA\\nMonaco,MC,MCO\\nMongolia,MN,MNG\\nMontenegro,ME,MNE\\nMontserrat,MS,MSR\\nMorocco,MA,MAR\\nMozambique,MZ,MOZ\\nMyanmar,MM,MMR\\nNamibia,NA,NAM\\nNauru,NR,NRU\\nNepal,NP,NPL\\nNetherlands,NL,NLD\\nNew Caledonia,NC,NCL\\nNew Zealand,NZ,NZL\\nNicaragua,NI,NIC\\nNiger,NE,NER\\nNigeria,NG,NGA\\nNiue,NU,NIU\\nNorfolk Island,NF,NFK\\nNorth Macedonia,MK,MKD\\nNorthern Mariana Islands,MP,MNP\\nNorway,NO,NOR\\nOman,OM,OMN\\nPakistan,PK,PAK\\nPalau,PW,PLW\\nPalestine,State of Palestine,PS,PSE\\nPanama,PA,PAN\\nPapua New Guinea,PG,PNG\\nParaguay,PY,PRY\\nPeru,PE,PER\\nPhilippines,PH,PHL\\nPitcairn,PN,PCN\\nPoland,PL,POL\\nPortugal,PT,PRT\\nPuerto Rico,PR,PRI\\nQatar,QA,QAT\\nR\\u00e9union,RE,REU\\nRomania,RO,ROU\\nRussia,Russian Federation,RU,RUS\\nRwanda,RW,RWA\\nSaint Barth\\u00e9lemy,BL,BLM\\nSaint Helena,Ascension and Tristan da Cunha,SH,SHN\\nSaint Kitts and Nevis,KN,KNA\\nSaint Lucia,LC,LCA\\nSaint Martin (French part),MF,MAF\\nSaint Pierre and Miquelon,PM,SPM\\nSaint Vincent and the Grenadines,VC,VCT\\nSamoa,WS,WSM\\nSan Marino,SM,SMR\\nSao Tome and Principe,ST,STP\\nSaudi Arabia,SA,SAU\\nSenegal,SN,SEN\\nSerbia,RS,SRB\\nSeychelles,SC,SYC\\nSierra Leone,SL,SLE\\nSingapore,SG,SGP\\nSint Maarten (Dutch part),SX,SXM\\nSlovakia,SK,SVK\\nSlovenia,SI,SVN\\nSolomon Islands,SB,SLB\\nSomalia,SO,SOM\\nSouth Africa,ZA,ZAF\\nSouth Georgia and the South Sandwich Islands,GS,SGS\\nSouth Sudan,SS,SSD\\nSpain,ES,ESP\\nSri Lanka,LK,LKA\\nSudan,SD,SDN\\nSuriname,SR,SUR\\nSvalbard and Jan Mayen,SJ,SJM\\nSweden,SE,SWE\\nSwitzerland,CH,CHE\\nSyrian Arab Republic,SY,SYR\\nTaiwan,Province of China,TW,TWN\\nTajikistan,TJ,TJK\\nTanzania,United Republic of Tanzania,TZ,TZA\\nThailand,TH,THA\\nTimor-Leste,TL,TLS\\nTogo,TG,TGO\\nTokelau,TK,TKL\\nTonga,TO,TON\\nTrinidad and Tobago,TT,TTO\\nTunisia,TN,TUN\\nTurkey,TR,TUR\\nTurkmenistan,TM,TKM\\nTurks and Caicos Islands,TC,TCA\\nTuvalu,TV,TUV\\nUganda,UG,UGA\\nUkraine,UA,UKR\\nUnited Arab Emirates,AE,ARE\\nUnited Kingdom of Great Britain and Northern Ireland,GB,GBR\\nUnited States of America,US,USA\\nUnited States Minor Outlying Islands,UM,UMI\\nUruguay,UY,URY\\nUzbekistan,UZ,UZB\\nVanuatu,VU,VUT\\nVenezuela (Bolivarian Republic of),VE,VEN\\nViet Nam,VN,VNM\\nVirgin Islands (British),VG,VGB\\nVirgin Islands (U.S.),VI,VIR\\nWallis and Futuna,WF,WLF\\nWestern Sahara,EH,ESH\\nYemen,YE,YEM\\nZambia,ZM,ZMB\\nZimbabwe,ZW,ZWE\\n\u0022,\u0022encryptionKey\u0022:null}" }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "1593", "Content-Type": "application/json", - "traceparent": "00-4b9c4dcfccdd354ba05c2ecde6976404-2f3839c7f17f0f4b-00", + "traceparent": "00-495e38476b959f409ba2f78898b7c93a-e8fb248e711aef40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "84dd3b3d143880dbad8758997d3a0019", @@ -177,13 +177,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "84dd3b3d-1438-80db-ad87-58997d3a0019", - "Content-Length": "2625", + "Content-Length": "2696", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Tue, 23 Jun 2020 18:03:50 GMT", - "elapsed-time": "984", - "ETag": "W/\u00220x8D8179FC8B67D5A\u0022", + "Date": "Fri, 26 Jun 2020 07:20:12 GMT", + "elapsed-time": "612", + "ETag": "W/\u00220x8D819A15DA956A0\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -193,7 +193,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D8179FC8B67D5A\u0022", + "@odata.etag": "\u00220x8D819A15DA956A0\u0022", "name": "gcwrdvqd", "defaultScoringProfile": null, "fields": [ @@ -354,20 +354,24 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "219", "Content-Type": "application/json", - "traceparent": "00-41a7e07e84311347b57870952f8487d8-c75cc56a38cafe4c-00", + "traceparent": "00-0b779ffc4c775f4bacda818d9731f6b5-8f2e6ae19d4e2a4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2df914cb39a8104e9ed27d3f3d6575eb", @@ -380,20 +384,20 @@ "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchtststg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "yqeacgan" + "name": "yukwtixa" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2df914cb-39a8-104e-9ed2-7d3f3d6575eb", - "Content-Length": "360", + "Content-Length": "381", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Tue, 23 Jun 2020 18:03:50 GMT", - "elapsed-time": "151", - "ETag": "W/\u00220x8D8179FC8DA3AAF\u0022", + "Date": "Fri, 26 Jun 2020 07:20:12 GMT", + "elapsed-time": "75", + "ETag": "W/\u00220x8D819A15DE92A69\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027gvdfhoer\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027gvdfhoer\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -403,7 +407,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D8179FC8DA3AAF\u0022", + "@odata.etag": "\u00220x8D819A15DE92A69\u0022", "name": "gvdfhoer", "description": null, "type": "azureblob", @@ -412,24 +416,25 @@ "connectionString": null }, "container": { - "name": "yqeacgan", + "name": "yukwtixa", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "807", + "Content-Length": "823", "Content-Type": "application/json", - "traceparent": "00-f2e0944f2c9ee645ae3c86459b50d4e7-46c0ccbd11df4745-00", + "traceparent": "00-4cc6d6ad7eb9734482fda4c011ece8ba-40f382eed0b10a47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e8e8b7973be6df4e6412b9231badd774", @@ -484,20 +489,21 @@ } ], "cognitiveServices": { - "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices" + "key": "Sanitized", + "@odata.type": "#Microsoft.Azure.Search.CognitiveServicesByKey" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "e8e8b797-3be6-df4e-6412-b9231badd774", - "Content-Length": "1191", + "Content-Length": "1228", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Tue, 23 Jun 2020 18:03:50 GMT", - "elapsed-time": "115", - "ETag": "W/\u00220x8D8179FC90A2FE4\u0022", + "Date": "Fri, 26 Jun 2020 07:20:12 GMT", + "elapsed-time": "79", + "ETag": "W/\u00220x8D819A15DFF9CBC\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027jnayotai\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027jnayotai\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -507,7 +513,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D8179FC90A2FE4\u0022", + "@odata.etag": "\u00220x8D819A15DFF9CBC\u0022", "name": "jnayotai", "description": null, "skills": [ @@ -568,23 +574,25 @@ } ], "cognitiveServices": { - "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", - "description": null + "@odata.type": "#Microsoft.Azure.Search.CognitiveServicesByKey", + "description": null, + "key": "Sanitized" }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "436", "Content-Type": "application/json", - "traceparent": "00-d9e7af13c55f8240ae9347fd05a580e1-93cb31b9590d3e4c-00", + "traceparent": "00-557bb134e4bad847a1c11a5be2f4204e-7b8e0df1fb320c43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "feb763c6ba369056658a96f151652962", @@ -628,13 +636,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "feb763c6-ba36-9056-658a-96f151652962", - "Content-Length": "1006", + "Content-Length": "1014", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Tue, 23 Jun 2020 18:03:51 GMT", - "elapsed-time": "372", - "ETag": "W/\u00220x8D8179FC943C464\u0022", + "Date": "Fri, 26 Jun 2020 07:20:13 GMT", + "elapsed-time": "356", + "ETag": "W/\u00220x8D819A15E38DFAB\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027vobrrqph\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027vobrrqph\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -644,7 +652,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D8179FC943C464\u0022", + "@odata.etag": "\u00220x8D819A15E38DFAB\u0022", "name": "vobrrqph", "description": null, "dataSourceName": "gvdfhoer", @@ -695,38 +703,32 @@ "mappingFunction": null } ], - "cache": null + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", - "RequestMethod": "POST", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027vobrrqph\u0027)/search.status?api-version=2020-06-30", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json; odata.metadata=none", + "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "58", - "Content-Type": "application/json", - "traceparent": "00-c949d47b13f0fb408e80b4afb085f432-44780363260a4e42-00", + "traceparent": "00-caf52b212411b443927599681d3b9f11-aecbfb3381395044-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2bda9d8351ac96d041b2e42b3f03b0d5", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "facets": [], - "scoringParameters": [], - "search": "ocean view" - }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2bda9d83-51ac-96d0-41b2-e42b3f03b0d5", - "Content-Length": "982", - "Content-Type": "application/json; odata.metadata=none", - "Date": "Tue, 23 Jun 2020 18:03:57 GMT", - "elapsed-time": "79", + "Content-Length": "2409", + "Content-Type": "application/json; odata.metadata=minimal", + "Date": "Fri, 26 Jun 2020 07:20:23 GMT", + "elapsed-time": "13", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -735,46 +737,109 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "x-ms-client-request-id": "2bda9d83-51ac-96d0-41b2-e42b3f03b0d5" }, - "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:0.57106817,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9tonnamment cher. Les suites mod\\u00e8les ont une vue sur l\\u2019oc\\u00e9an.\u0022,\u0022tags\u0022:[],\u0022address\u0022:null},{\u0022@search.score\u0022:0.12690403,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022address\u0022:null}]}" + "ResponseBody": { + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo", + "name": "vobrrqph", + "status": "running", + "lastResult": { + "status": "success", + "errorMessage": null, + "startTime": "2020-06-26T07:20:14.464Z", + "endTime": "2020-06-26T07:20:16.089Z", + "itemsProcessed": 10, + "itemsFailed": 0, + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T07:20:14.48Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T07:19:44.4805567\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T07:19:44.4805567\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "errors": [], + "warnings": [ + { + "key": "localId=6\u0026documentKey=6", + "name": "Enrichment.ConditionalSkill.descriptionFrConditional", + "message": "Skill executed but may have unexpected results because one or more skill input was invalid.", + "details": "Optional skill input is missing. Name: \u0027whenFalse\u0027, Source: \u0027/document/descriptionFr\u0027.\r\nExpression language parsing issues:\nMissing value \u0027/document/descriptionFr\u0027.", + "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2106385" + } + ], + "metrics": null + }, + "executionHistory": [ + { + "status": "success", + "errorMessage": null, + "startTime": "2020-06-26T07:20:14.464Z", + "endTime": "2020-06-26T07:20:16.089Z", + "itemsProcessed": 10, + "itemsFailed": 0, + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T07:20:14.48Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T07:19:44.4805567\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T07:19:44.4805567\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "errors": [], + "warnings": [ + { + "key": "localId=6\u0026documentKey=6", + "name": "Enrichment.ConditionalSkill.descriptionFrConditional", + "message": "Skill executed but may have unexpected results because one or more skill input was invalid.", + "details": "Optional skill input is missing. Name: \u0027whenFalse\u0027, Source: \u0027/document/descriptionFr\u0027.\r\nExpression language parsing issues:\nMissing value \u0027/document/descriptionFr\u0027.", + "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2106385" + } + ], + "metrics": null + } + ], + "limits": { + "maxRunTime": "PT1H", + "maxDocumentExtractionSize": 16777216, + "maxDocumentContentCharactersToExtract": 32768 + } + } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027vobrrqph\u0027)?api-version=2019-05-06-Preview", - "RequestMethod": "DELETE", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)/docs/search.post.search?api-version=2020-06-30", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json; odata.metadata=minimal", + "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4e3d65b7bcef4546a696a48156dc8ad4-142b8f840de94d40-00", + "Content-Length": "58", + "Content-Type": "application/json", + "traceparent": "00-d82481dfc4734545b157f91365127d42-d8c627da084e7345-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8321fddb5083aaa8bc28be9017e623d2", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 204, + "RequestBody": { + "facets": [], + "scoringParameters": [], + "search": "ocean view" + }, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "8321fddb-5083-aaa8-bc28-be9017e623d2", - "Date": "Tue, 23 Jun 2020 18:03:57 GMT", - "elapsed-time": "51", + "Content-Length": "980", + "Content-Type": "application/json; odata.metadata=none", + "Date": "Fri, 26 Jun 2020 07:20:23 GMT", + "elapsed-time": "110", "Expires": "-1", + "OData-Version": "4.0", "Pragma": "no-cache", + "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "8321fddb-5083-aaa8-bc28-be9017e623d2", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "x-ms-client-request-id": "8321fddb-5083-aaa8-bc28-be9017e623d2" }, - "ResponseBody": [] + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:7.2570066,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9tonnamment cher. Les suites mod\\u00e8les ont une vue sur l\\u2019oc\\u00e9an.\u0022,\u0022tags\u0022:[],\u0022address\u0022:null},{\u0022@search.score\u0022:1.5997614,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022address\u0022:null}]}" }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027jnayotai\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027vobrrqph\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-62998ea194cb5945a7f08458f917af35-d925a3cb62e59a4a-00", + "traceparent": "00-5eb15683de56eb469c031b6880580fd0-d8af63ee23538d4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2028981fb0e6743e9321bd83d62a5061", @@ -785,8 +850,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2028981f-b0e6-743e-9321-bd83d62a5061", - "Date": "Tue, 23 Jun 2020 18:03:57 GMT", - "elapsed-time": "69", + "Date": "Fri, 26 Jun 2020 07:20:24 GMT", + "elapsed-time": "267", "Expires": "-1", "Pragma": "no-cache", "request-id": "2028981f-b0e6-743e-9321-bd83d62a5061", @@ -796,14 +861,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027gvdfhoer\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027jnayotai\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-0ba4968f8d89b4468cc139ce433ddd7a-4465defa91984e43-00", + "traceparent": "00-af31842ef13ba445bb06c884946cfa50-1a2327055dc51b48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5315c0daa64333def4306e84923f7f5a", @@ -814,8 +879,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "5315c0da-a643-33de-f430-6e84923f7f5a", - "Date": "Tue, 23 Jun 2020 18:03:57 GMT", - "elapsed-time": "70", + "Date": "Fri, 26 Jun 2020 07:20:24 GMT", + "elapsed-time": "91", "Expires": "-1", "Pragma": "no-cache", "request-id": "5315c0da-a643-33de-f430-6e84923f7f5a", @@ -825,14 +890,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027gvdfhoer\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ee2872bd533a884fa6a1ff7ad6f415b8-8476fc8b96d40449-00", + "traceparent": "00-363ab5ef49615b4ca5506922656cb9da-9868c439767fb345-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a70c118f90da2beebeadef629225d492", @@ -843,8 +908,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "a70c118f-90da-2bee-bead-ef629225d492", - "Date": "Tue, 23 Jun 2020 18:03:58 GMT", - "elapsed-time": "865", + "Date": "Fri, 26 Jun 2020 07:20:24 GMT", + "elapsed-time": "30", "Expires": "-1", "Pragma": "no-cache", "request-id": "a70c118f-90da-2bee-bead-ef629225d492", @@ -854,14 +919,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027yawilrdj\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027gcwrdvqd\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-631ca383dd1f924284663bd3c8ccafac-6a90094607ee1d47-00", + "traceparent": "00-5e978c7e0886b14abf46e91c4d7fac86-eb442e08a35f3841-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200623.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "57b65dd7cfd0788eb9f52bb641bae154", @@ -872,8 +937,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "57b65dd7-cfd0-788e-b9f5-2bb641bae154", - "Date": "Tue, 23 Jun 2020 18:03:58 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 07:20:24 GMT", + "elapsed-time": "269", "Expires": "-1", "Pragma": "no-cache", "request-id": "57b65dd7-cfd0-788e-b9f5-2bb641bae154", @@ -881,12 +946,42 @@ "x-ms-client-request-id": "57b65dd7-cfd0-788e-b9f5-2bb641bae154" }, "ResponseBody": [] + }, + { + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027yawilrdj\u0027)?api-version=2020-06-30", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json; odata.metadata=minimal", + "api-key": "Sanitized", + "traceparent": "00-a46a7913dd3a54489a9f782b9678ef11-82ecb8716ce08f41-00", + "User-Agent": [ + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c4f462a2a91d4987d1e99596b67ca0cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "client-request-id": "c4f462a2-a91d-4987-d1e9-9596b67ca0cf", + "Date": "Fri, 26 Jun 2020 07:20:24 GMT", + "elapsed-time": "24", + "Expires": "-1", + "Pragma": "no-cache", + "request-id": "c4f462a2-a91d-4987-d1e9-9596b67ca0cf", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c4f462a2-a91d-4987-d1e9-9596b67ca0cf" + }, + "ResponseBody": [] } ], "Variables": { - "BlobContainerName": "yqeacgan", + "BlobContainerName": "yukwtixa", "RandomSeed": "1201831244", "SEARCH_ADMIN_API_KEY": "Sanitized", + "SEARCH_COGNITIVE_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", "SEARCH_STORAGE_NAME": "heathsrchtststg" 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 38e11eb0d938..3ec460163c84 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-6f2be1b6d4b2d7498838d3516f3af4af-61d7cdc3bf7df84b-00", + "traceparent": "00-decefbb6f0367b438da269288000f0e8-f76efd276edcbf44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "236582ddb742189bb152143ee3f98722", "x-ms-return-client-request-id": "true" @@ -18,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "236582dd-b742-189b-b152-143ee3f98722", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "42", + "Date": "Fri, 26 Jun 2020 06:20:13 GMT", + "elapsed-time": "46", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "236582dd-b742-189b-b152-143ee3f98722", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "236582dd-b742-189b-b152-143ee3f98722" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "495571034", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f5343c1307d4..13b43ca27d86 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetCountAsyncAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-330038e1f0d7cc449fd9af01498d45d6-2d70139c3b3b494c-00", + "traceparent": "00-8aea66dcc7d9754e9ee7f352f67fc1aa-8ab83a5685c03846-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6626ad329da6fd3193b5a92b98b5b74f", "x-ms-return-client-request-id": "true" @@ -18,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "6626ad32-9da6-fd31-93b5-a92b98b5b74f", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:01:33 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 06:25:30 GMT", + "elapsed-time": "56", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6626ad32-9da6-fd31-93b5-a92b98b5b74f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6626ad32-9da6-fd31-93b5-a92b98b5b74f" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "2104098183", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 853ea4fb3387..d1ce080d1757 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7a2d5cfb93318f4e8b08862891243ff3-5e08fee9291e9e49-00", + "traceparent": "00-2803cf45fd7f9a4398b7ef5d96570b57-7242a2cb2a1d8a41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3a08bb2910952da418397c32fedb09c4", "x-ms-return-client-request-id": "true" @@ -18,19 +18,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "3a08bb29-1095-2da4-1839-7c32fedb09c4", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "34", + "Date": "Fri, 26 Jun 2020 06:20:13 GMT", + "elapsed-time": "99", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3a08bb29-1095-2da4-1839-7c32fedb09c4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3a08bb29-1095-2da4-1839-7c32fedb09c4" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -49,16 +51,12 @@ "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37093, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -72,8 +70,8 @@ ], "Variables": { "RandomSeed": "1977008283", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 b6abecc44928..5bd1e0fa1004 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/GetStatisticsAsyncAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a3a359e206c0044ca0bfb0a947ad6ba2-c91232d35b3edc4e-00", + "traceparent": "00-9fd069e48df24b46a2674cfa42f1ebf6-28d8eb2845725647-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3557d1c80476f1dec2ba685ca5c4ef71", "x-ms-return-client-request-id": "true" @@ -18,19 +18,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "3557d1c8-0476-f1de-c2ba-685ca5c4ef71", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:01:33 GMT", - "elapsed-time": "55", + "Date": "Fri, 26 Jun 2020 06:25:30 GMT", + "elapsed-time": "162", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3557d1c8-0476-f1de-c2ba-685ca5c4ef71", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3557d1c8-0476-f1de-c2ba-685ca5c4ef71" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -49,16 +51,12 @@ "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37093, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -72,8 +70,8 @@ ], "Variables": { "RandomSeed": "180277775", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 d29c2d5e1ae4..8d7a38b31e3a 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-heathsearch2.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "74da84cc969d91270b8cb602179371eb", "x-ms-return-client-request-id": "true" @@ -17,26 +17,28 @@ "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "74da84cc-969d-9127-0b8c-b602179371eb", "Content-Language": "en", "Content-Length": "88", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:20:13 GMT", + "elapsed-time": "51", "Expires": "-1", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "74da84cc-969d-9127-0b8c-b602179371eb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "74da84cc-969d-9127-0b8c-b602179371eb" }, "ResponseBody": { - "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-heathsearch2\u0027 was not found." + "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-heathsrchtst\u0027 was not found." } } ], "Variables": { "RandomSeed": "266578448", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsync.json index e422418a71df..06efc5dfd324 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-gjxdhkdl.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "api-key": "Sanitized", @@ -38,4 +38,4 @@ "SearchIndexName": "grurisvf", "SearchServiceName": "azs-net-gjxdhkdl" } -} \ 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 89bb66f9d246..d6497ab1a6cf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/HelloWorld/HandleErrorsAsyncAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027doesnotexist\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-68d00083f0264042b02650856ad55023-3a20ad5cc0e8524d-00", + "traceparent": "00-154bcd4992c2b74da184b32915c10067-a586d9c9d4057546-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9641ca3ce0e80834b37771415da659ae", "x-ms-return-client-request-id": "true" @@ -18,26 +18,28 @@ "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9641ca3c-e0e8-0834-b377-71415da659ae", "Content-Language": "en", "Content-Length": "88", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 08 May 2020 07:01:33 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:25:30 GMT", + "elapsed-time": "8", "Expires": "-1", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9641ca3c-e0e8-0834-b377-71415da659ae", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9641ca3c-e0e8-0834-b377-71415da659ae" }, "ResponseBody": { - "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-heathsearch2\u0027 was not found." + "Message": "The index \u0027doesnotexist\u0027 for service \u0027azs-net-heathsrchtst\u0027 was not found." } } ], "Variables": { "RandomSeed": "2017785311", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 5e10349285bd..3e1cff1832df 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZero.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rxjicnaq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qmfmbdsg\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a28de26d2357f642addf64d7749dc522-cb9b8bf63160f641-00", + "traceparent": "00-9d6c1ab8a354b545bcd8a09b4f57d7f4-6a527c47b978fd49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1c37d00995567ff4f9c8d2a72cb6e71b", "x-ms-return-client-request-id": "true" @@ -18,29 +18,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "1c37d009-9556-7ff4-f9c8-d2a72cb6e71b", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:51:01 GMT", - "elapsed-time": "70", + "Date": "Fri, 26 Jun 2020 06:06:45 GMT", + "elapsed-time": "132", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "1c37d009-9556-7ff4-f9c8-d2a72cb6e71b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1c37d009-9556-7ff4-f9c8-d2a72cb6e71b" }, "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rxjicnaq\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qmfmbdsg\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f4c0dd0c68074a46b183f667bddbb5fd-0b19131235ec454e-00", + "traceparent": "00-657b8b9919e63a498f4f513e2d2c22bb-ad2e2bf3c54b8242-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1cd9c3b379f7bd1fcf8488848e1fe2fa", "x-ms-return-client-request-id": "true" @@ -49,20 +51,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:51:01 GMT", - "elapsed-time": "195", + "client-request-id": "1cd9c3b3-79f7-bd1f-cf84-88848e1fe2fa", + "Date": "Fri, 26 Jun 2020 06:06:45 GMT", + "elapsed-time": "222", "Expires": "-1", "Pragma": "no-cache", "request-id": "1cd9c3b3-79f7-bd1f-cf84-88848e1fe2fa", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1cd9c3b3-79f7-bd1f-cf84-88848e1fe2fa" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "486317286", - "SearchIndexName": "rxjicnaq", + "SearchIndexName": "qmfmbdsg", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 77be9b13f8e9..e62589e13a9b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/CountStartsAtZeroAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rcbpoeha\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dofdylja\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3e13d77f9a0900439deb60509c1e8ac5-6fe3b2eafef9c346-00", + "traceparent": "00-e102592c32c7a540aa5988445d8413fc-8c614a762a1fc344-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "42cc42e8f3c91cbf52fa29d6d79b064e", "x-ms-return-client-request-id": "true" @@ -18,29 +18,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "42cc42e8-f3c9-1cbf-52fa-29d6d79b064e", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:56:27 GMT", - "elapsed-time": "59", + "Date": "Fri, 26 Jun 2020 06:13:39 GMT", + "elapsed-time": "75", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "42cc42e8-f3c9-1cbf-52fa-29d6d79b064e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "42cc42e8-f3c9-1cbf-52fa-29d6d79b064e" }, "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rcbpoeha\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dofdylja\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ab6ed9e894a4704a93998e7546eb6f3d-3007fc7f3e71b34d-00", + "traceparent": "00-d7ef40b1f066964399c8e65a6a585f34-53782e08626bea46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "68e454c45eea9d3f02f29757a9bd22bc", "x-ms-return-client-request-id": "true" @@ -49,20 +51,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:56:27 GMT", - "elapsed-time": "261", + "client-request-id": "68e454c4-5eea-9d3f-02f2-9757a9bd22bc", + "Date": "Fri, 26 Jun 2020 06:13:39 GMT", + "elapsed-time": "266", "Expires": "-1", "Pragma": "no-cache", "request-id": "68e454c4-5eea-9d3f-02f2-9757a9bd22bc", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "68e454c4-5eea-9d3f-02f2-9757a9bd22bc" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1167851963", - "SearchIndexName": "rcbpoeha", + "SearchIndexName": "dofdylja", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 b1d61a9a9afb..5184e733127f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeys.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pxcphfjr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yiwsgmfm\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "515", "Content-Type": "application/json", - "traceparent": "00-78609929dc718448bdd600b09cd03dad-14d25bb55049274c-00", + "traceparent": "00-54e8a31e98086048821fc32aaae85521-6574387e474ec940-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "24a4f4785ace54d0676f90da72dde4e1", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "24a4f478-5ace-54d0-676f-90da72dde4e1", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:30:43 GMT", - "elapsed-time": "111", + "Date": "Fri, 26 Jun 2020 06:07:08 GMT", + "elapsed-time": "123", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pxcphfjr\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yiwsgmfm\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f8f4353e677c7d4d9f990e5256a745bc-ce0141e3d4851b4e-00", + "traceparent": "00-4a4c3a8a71efef48bf7ece7d878102bc-0839952aa406c84a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "81c662216cffeed460af5d745e06a65b", "x-ms-return-client-request-id": "true" @@ -106,8 +106,8 @@ "client-request-id": "81c66221-6cff-eed4-60af-5d745e06a65b", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:30:46 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:07:10 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,17 +119,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pxcphfjr\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yiwsgmfm\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-d5b618822c56c649b58482a028c3274c-2a96d689bb641d4e-00", + "traceparent": "00-d4b350ee470f064fb6b86f5a81f95d64-ce46f0b2f1b6b14d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d842c065667af648595940b29f832ee7", "x-ms-return-client-request-id": "true" @@ -152,8 +152,8 @@ "client-request-id": "d842c065-667a-f648-5959-40b29f832ee7", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:30:46 GMT", - "elapsed-time": "58", + "Date": "Fri, 26 Jun 2020 06:07:10 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -180,15 +180,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pxcphfjr\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yiwsgmfm\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2015c9640016c24e9e765ac65652de2b-b676db28c2610744-00", + "traceparent": "00-c067e254c36ff542af0cb9b6b4494316-e4551ee3f0c7f740-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3fcd5e96716e0b8820b6c41ffd5bf660", "x-ms-return-client-request-id": "true" @@ -200,8 +200,8 @@ "client-request-id": "3fcd5e96-716e-0b88-20b6-c41ffd5bf660", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:30:48 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:07:12 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -213,15 +213,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pxcphfjr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yiwsgmfm\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-8e0008d7a750b34ba9a0853f03932957-49684d61e4f7ee4f-00", + "traceparent": "00-5b3f82954c003a42b676917f416ffc99-612b940d4e9da540-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b17534c90c9bba6619cf28a52b214edc", "x-ms-return-client-request-id": "true" @@ -231,8 +231,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "b17534c9-0c9b-ba66-19cf-28a52b214edc", - "Date": "Mon, 01 Jun 2020 11:30:48 GMT", - "elapsed-time": "527", + "Date": "Fri, 26 Jun 2020 06:07:12 GMT", + "elapsed-time": "225", "Expires": "-1", "Pragma": "no-cache", "request-id": "b17534c9-0c9b-ba66-19cf-28a52b214edc", @@ -244,8 +244,8 @@ ], "Variables": { "RandomSeed": "432976220", - "SearchIndexName": "pxcphfjr", + "SearchIndexName": "yiwsgmfm", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 df7736302a61..a683bd740c70 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DeleteByKeysAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027udllcene\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fnnbsdox\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "515", "Content-Type": "application/json", - "traceparent": "00-ac3ff4906b8dca48b9212ee36580aac1-b500bf651c6a2540-00", + "traceparent": "00-eb47c8eb8868914eb3c7dbb7818ad63b-8ebf06469027604d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9a1bff16231abc751588e22f1bb62dd1", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "9a1bff16-231a-bc75-1588-e22f1bb62dd1", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:34:12 GMT", - "elapsed-time": "102", + "Date": "Fri, 26 Jun 2020 06:14:02 GMT", + "elapsed-time": "82", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027udllcene\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fnnbsdox\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-394d1947bece674d94fbbead644c92be-f57a1fcf0588e243-00", + "traceparent": "00-200ba7218b19cb40ad9bbfd9bde3c05e-909a7c2f27b08848-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2a68e09fe70929f94e44de948f12181c", "x-ms-return-client-request-id": "true" @@ -106,8 +106,8 @@ "client-request-id": "2a68e09f-e709-29f9-4e44-de948f12181c", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:34:14 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:14:04 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -119,17 +119,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027udllcene\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fnnbsdox\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-7011038ffaa5bc408fe03ba96c60358e-8058369ee830eb4b-00", + "traceparent": "00-f442aa2fa799ca4382aa567745e85135-d4360faac19e4948-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2e8060ad12fd20dd69d256285fe0c3f1", "x-ms-return-client-request-id": "true" @@ -152,8 +152,8 @@ "client-request-id": "2e8060ad-12fd-20dd-69d2-56285fe0c3f1", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:34:14 GMT", - "elapsed-time": "49", + "Date": "Fri, 26 Jun 2020 06:14:04 GMT", + "elapsed-time": "19", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -180,15 +180,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027udllcene\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fnnbsdox\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7cc66c5cdd6f3b40a21e4963b2bbc21b-8861d97968165d42-00", + "traceparent": "00-c8d7008108113e4a82857337fcec60b8-064ba6138652364b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b614be8be5c02fbb05f14bd545e02d03", "x-ms-return-client-request-id": "true" @@ -200,7 +200,7 @@ "client-request-id": "b614be8b-e5c0-2fbb-05f1-4bd545e02d03", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:34:16 GMT", + "Date": "Fri, 26 Jun 2020 06:14:06 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", @@ -213,15 +213,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027udllcene\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fnnbsdox\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-d3d4516cef966e41bf08497642db5dc8-49b686a14fe93445-00", + "traceparent": "00-a2d1fdbd3cae084f9bd40c75de6ac9ef-d79e850d6d492843-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bb82c56fff358dd30348c13790d0ca6d", "x-ms-return-client-request-id": "true" @@ -231,8 +231,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "bb82c56f-ff35-8dd3-0348-c13790d0ca6d", - "Date": "Mon, 01 Jun 2020 11:34:16 GMT", - "elapsed-time": "526", + "Date": "Fri, 26 Jun 2020 06:14:06 GMT", + "elapsed-time": "177", "Expires": "-1", "Pragma": "no-cache", "request-id": "bb82c56f-ff35-8dd3-0348-c13790d0ca6d", @@ -244,8 +244,8 @@ ], "Variables": { "RandomSeed": "282699616", - "SearchIndexName": "udllcene", + "SearchIndexName": "fnnbsdox", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 b5b63332ceff..8c9b2fce5e57 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mdehxtpi\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwyqejss\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-8221b60d2f63a944827f2e4e639d4723-cc208ac03c97e24c-00", + "traceparent": "00-9498f5cae776044cb6e6c625a42be86d-e3db1d9121362640-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0f053a14ec7785032a7274d470958cb4", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0f053a14-ec77-8503-2a72-74d470958cb4", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:51:48 GMT", - "elapsed-time": "74", + "Date": "Fri, 26 Jun 2020 06:07:36 GMT", + "elapsed-time": "111", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0f053a14-ec77-8503-2a72-74d470958cb4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0f053a14-ec77-8503-2a72-74d470958cb4" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mdehxtpi\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwyqejss\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c66518531096604e9679b0edcc64cd25-7b496beccd91d64b-00", + "traceparent": "00-004c22d57ce599439356c4d3bd8b4bf3-4eb3a5bd26dfe84c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4a24e8378085131710dda09c4f12a081", "x-ms-return-client-request-id": "true" @@ -68,31 +70,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "4a24e837-8085-1317-10dd-a09c4f12a081", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:51:50 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:07:38 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4a24e837-8085-1317-10dd-a09c4f12a081", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4a24e837-8085-1317-10dd-a09c4f12a081" }, "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mdehxtpi\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwyqejss\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-f8946f9e1e3b3745a1c7efabd9703955-a784afc06ab59843-00", + "traceparent": "00-4a79ff6f45933942bf03c422975d1cbf-e13373a35c66da4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "933f46319a92b55f57a970c880afe404", "x-ms-return-client-request-id": "true" @@ -109,16 +113,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "933f4631-9a92-b55f-57a9-70c880afe404", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:51:50 GMT", - "elapsed-time": "25", + "Date": "Fri, 26 Jun 2020 06:07:38 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "933f4631-9a92-b55f-57a9-70c880afe404", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "933f4631-9a92-b55f-57a9-70c880afe404" }, "ResponseBody": { "value": [ @@ -132,15 +138,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mdehxtpi\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwyqejss\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-cd612cd52f0cb141acc7cf674e5d1b6d-61015d0535946848-00", + "traceparent": "00-494e89c4040a5c409773708157516134-4692527204bca642-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7803a36451f0948a22f1ff994c673518", "x-ms-return-client-request-id": "true" @@ -149,29 +155,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "7803a364-51f0-948a-22f1-ff994c673518", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:51:52 GMT", + "Date": "Fri, 26 Jun 2020 06:07:40 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "7803a364-51f0-948a-22f1-ff994c673518", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "7803a364-51f0-948a-22f1-ff994c673518" }, "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mdehxtpi\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwyqejss\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-48b70121554c8949a9fad3f2e8667e39-0b6703ad52b3d24a-00", + "traceparent": "00-71fd37385df6a9419d98408fb98375e6-46d6b01462f8834a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "29a3f3d2f9569d22896ff3dc0f4f9360", "x-ms-return-client-request-id": "true" @@ -180,20 +188,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:51:53 GMT", - "elapsed-time": "259", + "client-request-id": "29a3f3d2-f956-9d22-896f-f3dc0f4f9360", + "Date": "Fri, 26 Jun 2020 06:07:40 GMT", + "elapsed-time": "219", "Expires": "-1", "Pragma": "no-cache", "request-id": "29a3f3d2-f956-9d22-896f-f3dc0f4f9360", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "29a3f3d2-f956-9d22-896f-f3dc0f4f9360" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1779014440", - "SearchIndexName": "mdehxtpi", + "SearchIndexName": "nwyqejss", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 b32b5252ab18..1e2d4ae1e1d8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraDynamicAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xlirdoji\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rpbnsxpk\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-3cdb6eb51bc35941b1ba479465237660-cba8cc17ee508b4c-00", + "traceparent": "00-a48373bcfff34a4a80d83f7901bba320-6b24f7872eba1646-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e20b8c2723563b98f8cd7393a9468c7b", "x-ms-return-client-request-id": "true" @@ -28,16 +28,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e20b8c27-2356-3b98-f8cd-7393a9468c7b", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:57:14 GMT", - "elapsed-time": "88", + "Date": "Fri, 26 Jun 2020 06:14:30 GMT", + "elapsed-time": "89", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e20b8c27-2356-3b98-f8cd-7393a9468c7b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e20b8c27-2356-3b98-f8cd-7393a9468c7b" }, "ResponseBody": { "value": [ @@ -51,15 +53,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xlirdoji\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rpbnsxpk\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-597b6642b951164cbdd3d51cd7dc434d-d77324681dc9874c-00", + "traceparent": "00-9a06e44263ea834c9de35307895c5adb-01b831a7bbe0f84c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b53a4cb685b533c5ff5ba200436ce48b", "x-ms-return-client-request-id": "true" @@ -68,31 +70,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "b53a4cb6-85b5-33c5-ff5b-a200436ce48b", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:57:16 GMT", + "Date": "Fri, 26 Jun 2020 06:14:32 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b53a4cb6-85b5-33c5-ff5b-a200436ce48b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b53a4cb6-85b5-33c5-ff5b-a200436ce48b" }, "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xlirdoji\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rpbnsxpk\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-9bb0adde4b58ee469c64cb3591f687e5-7ae61085ccf17b4f-00", + "traceparent": "00-f15270937b94d34a909fa863294e8bc7-9ba4db2b5666c841-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0fcb78ad841aa5fcde3b98af37867515", "x-ms-return-client-request-id": "true" @@ -109,16 +113,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0fcb78ad-841a-a5fc-de3b-98af37867515", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:57:16 GMT", - "elapsed-time": "26", + "Date": "Fri, 26 Jun 2020 06:14:32 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0fcb78ad-841a-a5fc-de3b-98af37867515", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0fcb78ad-841a-a5fc-de3b-98af37867515" }, "ResponseBody": { "value": [ @@ -132,15 +138,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xlirdoji\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rpbnsxpk\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3e738dae69f4bc4cb915cb6af5a45451-625d24f92f25a048-00", + "traceparent": "00-814a05149a009548bb3b7747a3c06ed0-b54af15f0d93fd48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5e81da8b2f09a2bbc7d7e2fa8198f88b", "x-ms-return-client-request-id": "true" @@ -149,29 +155,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5e81da8b-2f09-a2bb-c7d7-e2fa8198f88b", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:57:18 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:14:34 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5e81da8b-2f09-a2bb-c7d7-e2fa8198f88b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5e81da8b-2f09-a2bb-c7d7-e2fa8198f88b" }, "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027xlirdoji\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rpbnsxpk\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-2b46f73d11dcb542b296812cf9597f08-99796864a0b0ac46-00", + "traceparent": "00-7269b7814e56da4ba8121e38cbf83574-86ef8e65db1c2b4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "30e5e7e97d7b32615094d779ec16fc79", "x-ms-return-client-request-id": "true" @@ -180,20 +188,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:57:18 GMT", - "elapsed-time": "208", + "client-request-id": "30e5e7e9-7d7b-3261-5094-d779ec16fc79", + "Date": "Fri, 26 Jun 2020 06:14:34 GMT", + "elapsed-time": "209", "Expires": "-1", "Pragma": "no-cache", "request-id": "30e5e7e9-7d7b-3261-5094-d779ec16fc79", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "30e5e7e9-7d7b-3261-5094-d779ec16fc79" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1755502886", - "SearchIndexName": "xlirdoji", + "SearchIndexName": "rpbnsxpk", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a05af7600c4e..ec6ef70a39e6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStatic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bykgcspy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vixmhuww\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "267", "Content-Type": "application/json", - "traceparent": "00-a35b389c7bc6ea4585132e9e15b98c90-1457f410b79ac748-00", + "traceparent": "00-2052d54083e2ef4380731cd8c950c072-40631f889a6b1049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cf1fd8bb01689a78c8f190efb0c92648", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "cf1fd8bb-0168-9a78-c8f1-90efb0c92648", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:31:12 GMT", - "elapsed-time": "113", + "Date": "Fri, 26 Jun 2020 06:08:03 GMT", + "elapsed-time": "98", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bykgcspy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vixmhuww\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a87facff25c8ab41be9cf18a1e20be4e-28ebd13b6fd4294a-00", + "traceparent": "00-8cf1219a9bdd734e8f7bb54bc6002b20-e7487a12f3b12b48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5d0d15f30a0e1bd97d67a268e54982b2", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "5d0d15f3-0a0e-1bd9-7d67-a268e54982b2", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:31:13 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:08:04 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -97,17 +97,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bykgcspy\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vixmhuww\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "268", "Content-Type": "application/json", - "traceparent": "00-62bd18bce080744fbcdec749069bcb43-a736050c8c262945-00", + "traceparent": "00-d01801ecd348be4eb3e1ee690b86d993-e8504c9c93d72446-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5f4cc33dfde379a6066cc6a2ec65fe82", "x-ms-return-client-request-id": "true" @@ -138,8 +138,8 @@ "client-request-id": "5f4cc33d-fde3-79a6-066c-c6a2ec65fe82", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:31:13 GMT", - "elapsed-time": "51", + "Date": "Fri, 26 Jun 2020 06:08:05 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -160,15 +160,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bykgcspy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vixmhuww\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a369f6a1375ba743a1c0644f4d7d162d-c9c9e104d24ce94a-00", + "traceparent": "00-3abe699b8a6d304dbb2c8e18c59ba392-af826eb200fadc47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7ebc7de48b9ab094ff0451005e10b47e", "x-ms-return-client-request-id": "true" @@ -180,8 +180,8 @@ "client-request-id": "7ebc7de4-8b9a-b094-ff04-51005e10b47e", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:31:16 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:08:07 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -193,15 +193,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bykgcspy\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vixmhuww\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-84869a006378ed44a2bdf4dfa1627cdf-06f508dc84ff7f46-00", + "traceparent": "00-9b11fe191768f148a1cc06eb2135eaa6-eea70029d22bd54e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ecb2de6fc67cf5656e9356a144372e18", "x-ms-return-client-request-id": "true" @@ -211,8 +211,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "ecb2de6f-c67c-f565-6e93-56a144372e18", - "Date": "Mon, 01 Jun 2020 11:31:16 GMT", - "elapsed-time": "523", + "Date": "Fri, 26 Jun 2020 06:08:07 GMT", + "elapsed-time": "231", "Expires": "-1", "Pragma": "no-cache", "request-id": "ecb2de6f-c67c-f565-6e93-56a144372e18", @@ -224,8 +224,8 @@ ], "Variables": { "RandomSeed": "170080043", - "SearchIndexName": "bykgcspy", + "SearchIndexName": "vixmhuww", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 bc76b41515fa..d34f880ffbaf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowDeletingExtraStaticAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fqhhfxso\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pylwvwkf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "267", "Content-Type": "application/json", - "traceparent": "00-5ad1a586f18f064ba8c2ad3c783cbf44-19d1b4282dc90d4f-00", + "traceparent": "00-e70e6fd025c1a74da9f1f6f0e51b53a4-2c057fe716cd3543-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ef71c43eb239eb400f7b0539411e1a36", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "ef71c43e-b239-eb40-0f7b-0539411e1a36", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:34:40 GMT", - "elapsed-time": "123", + "Date": "Fri, 26 Jun 2020 06:14:57 GMT", + "elapsed-time": "86", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fqhhfxso\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pylwvwkf\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-620b08a8466f2f489f290fdba568d81a-df74348fd317fa48-00", + "traceparent": "00-3696ae125035d34d84f002ea0bb58530-c497ec5da0f18247-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "edbe3f1d740eaf2e72ba0901f3d523b6", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "edbe3f1d-740e-af2e-72ba-0901f3d523b6", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:34:42 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:14:59 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -97,17 +97,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fqhhfxso\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pylwvwkf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "268", "Content-Type": "application/json", - "traceparent": "00-abfa848cf919b24397b0f855792e2d63-5d1390a8443c1b49-00", + "traceparent": "00-f16cc001a222fb4ebb23c5727c0485f6-b7a097aba7a2ee41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5c80a3c88e4ef62bcc2fb47d85b4ef83", "x-ms-return-client-request-id": "true" @@ -138,8 +138,8 @@ "client-request-id": "5c80a3c8-8e4e-f62b-cc2f-b47d85b4ef83", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:34:42 GMT", - "elapsed-time": "50", + "Date": "Fri, 26 Jun 2020 06:14:59 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -160,15 +160,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fqhhfxso\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pylwvwkf\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f3d5a82c10fcc04680c8d37b50086923-0a0f42c1fb167242-00", + "traceparent": "00-404ba5645d85a3449ed23b36376a7c1c-9882ffdf5eceb14a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "95be6eda6d3bc97d95c17c7fa93ef839", "x-ms-return-client-request-id": "true" @@ -180,8 +180,8 @@ "client-request-id": "95be6eda-6d3b-c97d-95c1-7c7fa93ef839", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 11:34:44 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:15:01 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -193,15 +193,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fqhhfxso\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pylwvwkf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-6aae3ee529ecb440819bb15121a674c6-410cf8033d6d3f45-00", + "traceparent": "00-1ef91a1b9f8de541a5edcaed77fbda08-b2bd6481fbadc84a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9d714f57be9d8ee714c720debfb029be", "x-ms-return-client-request-id": "true" @@ -211,8 +211,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "9d714f57-be9d-8ee7-14c7-20debfb029be", - "Date": "Mon, 01 Jun 2020 11:34:44 GMT", - "elapsed-time": "663", + "Date": "Fri, 26 Jun 2020 06:15:01 GMT", + "elapsed-time": "212", "Expires": "-1", "Pragma": "no-cache", "request-id": "9d714f57-be9d-8ee7-14c7-20debfb029be", @@ -224,8 +224,8 @@ ], "Variables": { "RandomSeed": "836785609", - "SearchIndexName": "fqhhfxso", + "SearchIndexName": "pylwvwkf", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0bfaf7e414fb..22395b57f32e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccess.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027lkknldeb\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wsaakdtn\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "514", "Content-Type": "application/json", - "traceparent": "00-86e57d62c69e8b458ac44de7376e63a9-ac96f7697d73a44b-00", + "traceparent": "00-e86115a1fd2b1442bc9a16074357ec29-9f6d6cb1ed28e64b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6e910c0169b1aa35c735dc9af96c6957", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "6e910c01-69b1-aa35-c735-dc9af96c6957", "Content-Length": "155", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:31:42 GMT", - "elapsed-time": "121", + "Date": "Fri, 26 Jun 2020 06:08:31 GMT", + "elapsed-time": "85", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027lkknldeb\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wsaakdtn\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-55e1bd4b8db2aa4997d7d52c6dcbf31f-28e2484bd7a3764d-00", + "traceparent": "00-6b84016aaa572e42a644038149b58fef-b2c483b11fd94d47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "68f1a98ae169fec5658ba5e97fcee7b7", "x-ms-return-client-request-id": "true" @@ -104,8 +104,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "68f1a98a-e169-fec5-658b-a5e97fcee7b7", - "Date": "Mon, 01 Jun 2020 11:31:42 GMT", - "elapsed-time": "547", + "Date": "Fri, 26 Jun 2020 06:08:33 GMT", + "elapsed-time": "2121", "Expires": "-1", "Pragma": "no-cache", "request-id": "68f1a98a-e169-fec5-658b-a5e97fcee7b7", @@ -117,8 +117,8 @@ ], "Variables": { "RandomSeed": "552340877", - "SearchIndexName": "lkknldeb", + "SearchIndexName": "wsaakdtn", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7d155eb24718..4a70e107d1a6 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnPartialSuccessAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ywspvntt\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027smbiuxpk\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "514", "Content-Type": "application/json", - "traceparent": "00-4e47cc672c2b554597428dfa2933dbad-27465cdb1f8e3040-00", + "traceparent": "00-a46e4c8a3a4a254d991e68a4fd05d3af-7048cc15fc355e4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7f9dfcb9835f94b6255a180359a28d05", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "7f9dfcb9-835f-94b6-255a-180359a28d05", "Content-Length": "155", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:35:08 GMT", - "elapsed-time": "173", + "Date": "Fri, 26 Jun 2020 06:15:25 GMT", + "elapsed-time": "151", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ywspvntt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027smbiuxpk\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-aa0c8f30e9ac9440a24c0786e1168904-b2ee49d4b68c874c-00", + "traceparent": "00-53121e617e713c40be83d91eee7daaec-83a24d127074cc45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7ed8d396f9e8061defb2d1e49dbe7014", "x-ms-return-client-request-id": "true" @@ -104,8 +104,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "7ed8d396-f9e8-061d-efb2-d1e49dbe7014", - "Date": "Mon, 01 Jun 2020 11:35:08 GMT", - "elapsed-time": "819", + "Date": "Fri, 26 Jun 2020 06:15:25 GMT", + "elapsed-time": "177", "Expires": "-1", "Pragma": "no-cache", "request-id": "7ed8d396-f9e8-061d-efb2-d1e49dbe7014", @@ -117,8 +117,8 @@ ], "Variables": { "RandomSeed": "1834614957", - "SearchIndexName": "ywspvntt", + "SearchIndexName": "smbiuxpk", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f914c402010a..cf3d4cb2c1af 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccess.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027jqhgwoeg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027elfodexc\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "263", "Content-Type": "application/json", - "traceparent": "00-ca19f004c3b5f54ebafbb07b3a486280-40390004477cbe44-00", + "traceparent": "00-b7a419762e2f5e4297f249063e36d82e-15cb986c512c4b4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1e447e2f19ca569dc22e5e7fcb4b8ebd", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "1e447e2f-19ca-569d-c22e-5e7fcb4b8ebd", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:32:06 GMT", - "elapsed-time": "133", + "Date": "Fri, 26 Jun 2020 06:08:56 GMT", + "elapsed-time": "185", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027jqhgwoeg\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027elfodexc\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-952dc14445ae4f4ba498976d727eef6b-e36c1ed92c040d4e-00", + "traceparent": "00-8b6f30ce78a94b40a6e60e0ddd04520a-e8ada9226f0ccb4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "61f7043e44940beb50485010ec005ba3", "x-ms-return-client-request-id": "true" @@ -82,8 +82,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "61f7043e-4494-0beb-5048-5010ec005ba3", - "Date": "Mon, 01 Jun 2020 11:32:06 GMT", - "elapsed-time": "610", + "Date": "Fri, 26 Jun 2020 06:08:56 GMT", + "elapsed-time": "253", "Expires": "-1", "Pragma": "no-cache", "request-id": "61f7043e-4494-0beb-5048-5010ec005ba3", @@ -95,8 +95,8 @@ ], "Variables": { "RandomSeed": "683326896", - "SearchIndexName": "jqhgwoeg", + "SearchIndexName": "elfodexc", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3103d3ffa2f0..245955b2ea31 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DoesNotThrowOnSuccessAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ndqkaowd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027oidsojln\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "263", "Content-Type": "application/json", - "traceparent": "00-5d2457bf8fcefa41930e8429b667e383-3670b5746ba9b14e-00", + "traceparent": "00-293fec73c1495a40840acfd6e388b682-b9b9dfe9cb82804e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c055820da40e85843eade3fe89eb38c1", "x-ms-return-client-request-id": "true" @@ -42,8 +42,8 @@ "client-request-id": "c055820d-a40e-8584-3ead-e3fe89eb38c1", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:35:31 GMT", - "elapsed-time": "126", + "Date": "Fri, 26 Jun 2020 06:15:47 GMT", + "elapsed-time": "87", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027ndqkaowd\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027oidsojln\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-2b252aaab02407499216bc8d7dfc1b50-ea111d000e21684e-00", + "traceparent": "00-b694a3941db15c46b8b92652a7bd173c-6d01de75551b3c46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65b0cdbe1d286f2ca1f3272e2444350b", "x-ms-return-client-request-id": "true" @@ -82,8 +82,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "65b0cdbe-1d28-6f2c-a1f3-272e2444350b", - "Date": "Mon, 01 Jun 2020 11:35:33 GMT", - "elapsed-time": "810", + "Date": "Fri, 26 Jun 2020 06:15:47 GMT", + "elapsed-time": "218", "Expires": "-1", "Pragma": "no-cache", "request-id": "65b0cdbe-1d28-6f2c-a1f3-272e2444350b", @@ -95,8 +95,8 @@ ], "Variables": { "RandomSeed": "109207449", - "SearchIndexName": "ndqkaowd", + "SearchIndexName": "oidsojln", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 30bdc852aba1..989101721c01 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bcqighys\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027okcqpjsg\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3727", "Content-Type": "application/json", - "traceparent": "00-609535944a83f444a5cad58c0115fb78-3697fa1213d74442-00", + "traceparent": "00-a201ca3159e3bb4ea86934a8465bb53c-6638429ead866044-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a7af2b74fd49d414bf6ea5e587749ab2", "x-ms-return-client-request-id": "true" @@ -165,8 +165,8 @@ "client-request-id": "a7af2b74-fd49-d414-bf6e-a5e587749ab2", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:05:54 GMT", - "elapsed-time": "102", + "Date": "Fri, 26 Jun 2020 06:09:20 GMT", + "elapsed-time": "97", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -211,15 +211,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bcqighys\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027okcqpjsg\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-03a165cceba9e34fa70266855a0c2f67-aa805a1ddbd4ec46-00", + "traceparent": "00-dc87adece574d24f8705fd775da60b9b-b69ee38e6e0b2d4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "73e8cc089da49d8c2b7873a9306c9898", "x-ms-return-client-request-id": "true" @@ -231,8 +231,8 @@ "client-request-id": "73e8cc08-9da4-9d8c-2b78-73a9306c9898", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 12:05:57 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:09:22 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -244,15 +244,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027bcqighys\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027okcqpjsg\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f6901611e1dfe14c8048838d001f705e-06db9304fb921348-00", + "traceparent": "00-2fd4caf2fa1c4c41a73b1dd625d29b50-0f28463e18e25d48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e8e6c8afd0812399ba28b88051dac8ee", "x-ms-return-client-request-id": "true" @@ -262,8 +262,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "e8e6c8af-d081-2399-ba28-b88051dac8ee", - "Date": "Mon, 01 Jun 2020 12:05:57 GMT", - "elapsed-time": "547", + "Date": "Fri, 26 Jun 2020 06:09:22 GMT", + "elapsed-time": "195", "Expires": "-1", "Pragma": "no-cache", "request-id": "e8e6c8af-d081-2399-ba28-b88051dac8ee", @@ -275,8 +275,8 @@ ], "Variables": { "RandomSeed": "1983224603", - "SearchIndexName": "bcqighys", + "SearchIndexName": "okcqpjsg", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f714d8c735b3..f338676bf9e8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/DynamicDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hhtsuuco\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027upahbkhe\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "3727", "Content-Type": "application/json", - "traceparent": "00-3c7bfad22d8c9e4791488d3e1fd3e99c-b65e0ce2a4344e48-00", + "traceparent": "00-3844830c69836c438de2d828c947d181-bf13d6e372787c43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "842adc2eefd236b7f3dd2173d1bbdd5c", "x-ms-return-client-request-id": "true" @@ -165,8 +165,8 @@ "client-request-id": "842adc2e-efd2-36b7-f3dd-2173d1bbdd5c", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:06:39 GMT", - "elapsed-time": "105", + "Date": "Fri, 26 Jun 2020 06:16:11 GMT", + "elapsed-time": "177", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -211,15 +211,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hhtsuuco\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027upahbkhe\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-38d4ca5a24089d46bd92657cb12208b8-7736e0f5179a0d46-00", + "traceparent": "00-53b3850fe1fcd049bcbba6fbc26d8a17-198da2de3cb11f43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "64f08d5b49f31b48855a8f36b28f9b3e", "x-ms-return-client-request-id": "true" @@ -231,8 +231,8 @@ "client-request-id": "64f08d5b-49f3-1b48-855a-8f36b28f9b3e", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 12:06:42 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:16:12 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -244,15 +244,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hhtsuuco\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027upahbkhe\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-0db18ebfd9ec4f4b9f7415b6e35cb3fe-f7b118120cee6940-00", + "traceparent": "00-bc2953d414ae0140a471c48f6eb0906f-9a41baf6ef76e34d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "09a530da1c2d8ab913e49b209ca030b2", "x-ms-return-client-request-id": "true" @@ -262,8 +262,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "09a530da-1c2d-8ab9-13e4-9b209ca030b2", - "Date": "Mon, 01 Jun 2020 12:06:42 GMT", - "elapsed-time": "702", + "Date": "Fri, 26 Jun 2020 06:16:13 GMT", + "elapsed-time": "299", "Expires": "-1", "Pragma": "no-cache", "request-id": "09a530da-1c2d-8ab9-13e4-9b209ca030b2", @@ -275,8 +275,8 @@ ], "Variables": { "RandomSeed": "1113032202", - "SearchIndexName": "hhtsuuco", + "SearchIndexName": "upahbkhe", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniences.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniences.json index 2296593ad931..0d3804810db9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniences.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniences.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "166", "Content-Type": "application/json", - "traceparent": "00-13f089ecfbe5d94f83733b20f0a203b3-2518e81299f07b4e-00", + "traceparent": "00-6ea6a0f5ad72d14b870bc9924b92a14b-beaaf8e19fc8b240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "009d12dad910189c0237a18060ad961c", "x-ms-return-client-request-id": "true" @@ -36,8 +36,8 @@ "client-request-id": "009d12da-d910-189c-0237-a18060ad961c", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:45 GMT", - "elapsed-time": "109", + "Date": "Fri, 26 Jun 2020 06:09:45 GMT", + "elapsed-time": "119", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a22cabd8aa19cb4caa5fa355737ca7ba-e2cb165361c03d4a-00", + "traceparent": "00-cea55af1691784439c434854cd227221-f3c23146b5b6b24c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b7137130e6fc20418415e7ddcf9f0ff2", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "b7137130-e6fc-2041-8415-e7ddcf9f0ff2", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:07:47 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:09:47 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -97,17 +97,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-dac60ed60a821044829bc08de9c9417c-705a4340fdddfa40-00", + "traceparent": "00-31178f2b8091904fb6b4ad2a64ac011b-564dd06f70c9944e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1bee5a52db9b4146ea0659759d78907f", "x-ms-return-client-request-id": "true" @@ -127,8 +127,8 @@ "client-request-id": "1bee5a52-db9b-4146-ea06-59759d78907f", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:47 GMT", - "elapsed-time": "53", + "Date": "Fri, 26 Jun 2020 06:09:47 GMT", + "elapsed-time": "21", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -149,15 +149,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7845c48e295ed443abb8273ce87ffdf3-8e928a3ca66c7846-00", + "traceparent": "00-534e1b3e1691ec41a8631b2b73045d97-7e2432b48cc7c743-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "465eb5c61dfef46cd07d7bfbf2be4962", "x-ms-return-client-request-id": "true" @@ -169,8 +169,8 @@ "client-request-id": "465eb5c6-1dfe-f46c-d07d-7bfbf2be4962", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:07:49 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:09:49 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,15 +182,15 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-b52e13c15a279946b13f57e0550f6974-138daf5a0c8ad349-00", + "traceparent": "00-f11928ca3b26c7469a5617e3870b7a6d-6b53630f5ef8aa4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "052eaf277abe54812bd2cdf58dcc820c", "x-ms-return-client-request-id": "true" @@ -202,8 +202,8 @@ "client-request-id": "052eaf27-7abe-5481-2bd2-cdf58dcc820c", "Content-Length": "236", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:49 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:09:49 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -229,17 +229,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "201", "Content-Type": "application/json", - "traceparent": "00-10c6e7ba48c716489d34bf8aaf81b342-5ab4c74fbb273c48-00", + "traceparent": "00-5bd290208e647c4bb98321ea957a656b-c3bb1786d58c6d42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "19166785c94135f3edfa4b1d5f4a4e2b", "x-ms-return-client-request-id": "true" @@ -264,8 +264,8 @@ "client-request-id": "19166785-c941-35f3-edfa-4b1d5f4a4e2b", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:49 GMT", - "elapsed-time": "47", + "Date": "Fri, 26 Jun 2020 06:09:49 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -292,15 +292,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4e7f7b97b863304a93941b349b420b4c-4afb502a0ef6eb43-00", + "traceparent": "00-937cad489101af469f48a416cd6eca59-5e8173657751bf47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ee4df6bd8a4a4cc133091a2c4f766703", "x-ms-return-client-request-id": "true" @@ -312,8 +312,8 @@ "client-request-id": "ee4df6bd-8a4a-4cc1-3309-1a2c4f766703", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:07:51 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:09:51 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,15 +325,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs(\u00272\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a4e0f895051b294eb2c89fd1f5a2cd44-0c54468dffc77a42-00", + "traceparent": "00-9707ef9f5b4c1742a365acd05366ecc8-b03aad6506c45445-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8a766ffa2fa75e21bcf917c32f63f5e0", "x-ms-return-client-request-id": "true" @@ -345,8 +345,8 @@ "client-request-id": "8a766ffa-2fa7-5e21-bcf9-17c32f63f5e0", "Content-Length": "238", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:51 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:09:51 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -372,17 +372,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "166", "Content-Type": "application/json", - "traceparent": "00-a063d518bf2ce0428555f9a6e0578304-7152c6e7a69c4740-00", + "traceparent": "00-83b81dd9e5f39146a3f058b6a784b2e5-8de604a52050b043-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9638a183937ffac1a6cae537aec6e576", "x-ms-return-client-request-id": "true" @@ -407,8 +407,8 @@ "client-request-id": "9638a183-937f-fac1-a6ca-e537aec6e576", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:51 GMT", - "elapsed-time": "40", + "Date": "Fri, 26 Jun 2020 06:09:51 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -435,15 +435,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-403eb2a44cfec948a7b278939eed5118-acebac1fda023147-00", + "traceparent": "00-581816c71250c344b47e24e2688c3641-04458e94a6f35a41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ef234793c4d48d83d4ef315072fd1dd0", "x-ms-return-client-request-id": "true" @@ -455,8 +455,8 @@ "client-request-id": "ef234793-c4d4-8d83-d4ef-315072fd1dd0", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:07:53 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:09:54 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -468,17 +468,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-b9741a4d8f9fcc488ed7564449a0e882-6aba1d6a9a278048-00", + "traceparent": "00-3868cdab4a480947abed23cdb6ee73d8-c95c52677fd50541-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aea83914d03e6784ad7be3dd4aeaaff5", "x-ms-return-client-request-id": "true" @@ -497,8 +497,8 @@ "client-request-id": "aea83914-d03e-6784-ad7b-e3dd4aeaaff5", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:07:53 GMT", - "elapsed-time": "49", + "Date": "Fri, 26 Jun 2020 06:09:54 GMT", + "elapsed-time": "26", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -519,15 +519,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-64b78fa2272bad4483ff3ff5a22dbb41-f672b5bc40033744-00", + "traceparent": "00-c74d120fda2068449248eaa979406997-c1ae0f62af386b4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e730a0140540be0c1daac190627087a8", "x-ms-return-client-request-id": "true" @@ -539,8 +539,8 @@ "client-request-id": "e730a014-0540-be0c-1daa-c190627087a8", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:07:55 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:09:56 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -552,15 +552,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027hruwhqjq\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tlqsfgxd\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-738c1c5adb716f43bbdef28fede4a1df-68b49447d89c9145-00", + "traceparent": "00-1af78e38f8d1f34b84eb8419af903b8e-0db5aef834d08e45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "742215ac371dc238c2bc4158e0a643ea", "x-ms-return-client-request-id": "true" @@ -570,8 +570,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "742215ac-371d-c238-c2bc-4158e0a643ea", - "Date": "Mon, 08 Jun 2020 21:07:55 GMT", - "elapsed-time": "522", + "Date": "Fri, 26 Jun 2020 06:09:56 GMT", + "elapsed-time": "403", "Expires": "-1", "Pragma": "no-cache", "request-id": "742215ac-371d-c238-c2bc-4158e0a643ea", @@ -583,8 +583,8 @@ ], "Variables": { "RandomSeed": "1408488917", - "SearchIndexName": "hruwhqjq", + "SearchIndexName": "tlqsfgxd", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniencesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniencesAsync.json index f9d56b3f72e3..78b07825189a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniencesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/IndexingConveniencesAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "166", "Content-Type": "application/json", - "traceparent": "00-0802a51ccef6844884b1ee4517deac98-2231d2c2f12ecb44-00", + "traceparent": "00-cf4d25b0341c3d4e918916007cddde90-d09057021a0c8b40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "95314f6586aa72c223e7185af5cf0e4b", "x-ms-return-client-request-id": "true" @@ -36,8 +36,8 @@ "client-request-id": "95314f65-86aa-72c2-23e7-185af5cf0e4b", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:03 GMT", - "elapsed-time": "171", + "Date": "Fri, 26 Jun 2020 06:16:37 GMT", + "elapsed-time": "114", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -64,15 +64,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-2d2653165f8f6544b352b4887933a3f5-c74c08ab5c5e7541-00", + "traceparent": "00-d4b79bb8d896d74eb82ec86b842ad323-ffcc7271f6b31e48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "071523340e28b1469ff6106af56e0a8a", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "07152334-0e28-b146-9ff6-106af56e0a8a", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:08:05 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:16:38 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -97,17 +97,17 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-b36c8f6610747749949ecc51c79dcd62-247dd6700b3d434a-00", + "traceparent": "00-a99a7d44028c534dab868eb03b473756-c95b687857e46944-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "81b32f2fb54b17a59ae6bb24bcaeecff", "x-ms-return-client-request-id": "true" @@ -127,8 +127,8 @@ "client-request-id": "81b32f2f-b54b-17a5-9ae6-bb24bcaeecff", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:05 GMT", - "elapsed-time": "52", + "Date": "Fri, 26 Jun 2020 06:16:39 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -149,15 +149,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f09026e68ceace4faa2a44d323880e37-b0a71bf8ef50f54d-00", + "traceparent": "00-7f78339b9ba6af4ca19d7fbfe7861265-e35b2fdb93d42348-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0cb00dcf04f9578a0880f6b475577db4", "x-ms-return-client-request-id": "true" @@ -169,8 +169,8 @@ "client-request-id": "0cb00dcf-04f9-578a-0880-f6b475577db4", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:08:07 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:16:41 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,15 +182,15 @@ "ResponseBody": "\uFEFF2" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-275bf20b3859504389d386247992cc57-d8c58380186b8647-00", + "traceparent": "00-c71b3cce1356794d8540056a1d3da17a-23d4cde3378f394e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c62b8edc8d1c7f007efe6d415222f5f0", "x-ms-return-client-request-id": "true" @@ -202,8 +202,8 @@ "client-request-id": "c62b8edc-8d1c-7f00-7efe-6d415222f5f0", "Content-Length": "236", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:07 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:16:41 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -229,17 +229,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "201", "Content-Type": "application/json", - "traceparent": "00-5d39aa859b4c944994782477de4ccd71-62e4ae0d78fb3d48-00", + "traceparent": "00-46129748c6c28342b20f9788dbb60963-a4863c84afb26a4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e79b1009fdbe2a91a55c78cabff0a142", "x-ms-return-client-request-id": "true" @@ -264,8 +264,8 @@ "client-request-id": "e79b1009-fdbe-2a91-a55c-78cabff0a142", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:07 GMT", - "elapsed-time": "52", + "Date": "Fri, 26 Jun 2020 06:16:41 GMT", + "elapsed-time": "25", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -292,15 +292,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7d0497120a6d6b41a70695ea03a74792-496c3bf74881594c-00", + "traceparent": "00-e81204f3206b114ebc496effd869ebfc-f655f853d301f348-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2d470768268341e30c318efb964804e6", "x-ms-return-client-request-id": "true" @@ -312,8 +312,8 @@ "client-request-id": "2d470768-2683-41e3-0c31-8efb964804e6", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:08:10 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:16:43 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -325,15 +325,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs(\u00272\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-a3d6d979b2120047ac730fca2596eb20-33b96cf4058e2c48-00", + "traceparent": "00-84077e9fcc3cd24d8624a644a605cbc7-4cccc6e24040bf4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65ab068b96bbdff6fd0020c01435c08d", "x-ms-return-client-request-id": "true" @@ -345,7 +345,7 @@ "client-request-id": "65ab068b-96bb-dff6-fd00-20c01435c08d", "Content-Length": "238", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:10 GMT", + "Date": "Fri, 26 Jun 2020 06:16:43 GMT", "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", @@ -372,17 +372,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "166", "Content-Type": "application/json", - "traceparent": "00-50c8f2d4c1be934facf3a620fefe93a4-d16f662ad9a8484a-00", + "traceparent": "00-617edeb605744a4982a5ec3126e6ca7a-7543cb0777cf0049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4bd92b5cc7dae26c2d59da8c6e96945c", "x-ms-return-client-request-id": "true" @@ -407,8 +407,8 @@ "client-request-id": "4bd92b5c-c7da-e26c-2d59-da8c6e96945c", "Content-Length": "137", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:10 GMT", - "elapsed-time": "47", + "Date": "Fri, 26 Jun 2020 06:16:43 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -435,15 +435,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4ef3b306b2fa504da13052f4e86b8ca0-0c03cd5c27cf134c-00", + "traceparent": "00-5e246be7c6d9c4439add55f2b57691f3-d3428c638c56d943-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b83f92583c45d2861068308305222dd6", "x-ms-return-client-request-id": "true" @@ -455,8 +455,8 @@ "client-request-id": "b83f9258-3c45-d286-1068-308305222dd6", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:08:12 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:16:45 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -468,17 +468,17 @@ "ResponseBody": "\uFEFF1" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-ccd152af9659e44a92f497b178b1067b-a4ff8368395ee340-00", + "traceparent": "00-2784d626fa670b4eb38199282c301d91-f9b4cabd98565e48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6b9e0170b86fc30b99c83862bb697066", "x-ms-return-client-request-id": "true" @@ -497,8 +497,8 @@ "client-request-id": "6b9e0170-b86f-c30b-99c8-3862bb697066", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 08 Jun 2020 21:08:12 GMT", - "elapsed-time": "46", + "Date": "Fri, 26 Jun 2020 06:16:45 GMT", + "elapsed-time": "28", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -519,15 +519,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-cf476a5a7be49748b078e85379fa2842-56ce80fc7817aa45-00", + "traceparent": "00-901a993488372c49aef6f506a45bcc9a-b3a4b71a71f9324c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8168c46b07f61f47a4063a7296e9dd0a", "x-ms-return-client-request-id": "true" @@ -539,8 +539,8 @@ "client-request-id": "8168c46b-07f6-1f47-a406-3a7296e9dd0a", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 08 Jun 2020 21:08:14 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:16:47 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -552,15 +552,15 @@ "ResponseBody": "\uFEFF0" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027xgmqwbvp\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yumaymdi\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-d65b05f29cf3624192d4eb37abc77330-261d431dabc49144-00", + "traceparent": "00-dea88bcb51e0c342a3ff610045e46c6d-dfc545c2a23bc941-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6d1b042c28f79fed877b1f7d032417a7", "x-ms-return-client-request-id": "true" @@ -570,8 +570,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "6d1b042c-28f7-9fed-877b-1f7d032417a7", - "Date": "Mon, 08 Jun 2020 21:08:14 GMT", - "elapsed-time": "597", + "Date": "Fri, 26 Jun 2020 06:16:47 GMT", + "elapsed-time": "237", "Expires": "-1", "Pragma": "no-cache", "request-id": "6d1b042c-28f7-9fed-877b-1f7d032417a7", @@ -583,8 +583,8 @@ ], "Variables": { "RandomSeed": "1452263316", - "SearchIndexName": "xgmqwbvp", + "SearchIndexName": "yumaymdi", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 890ba2062a4a..24eb6e24a953 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1738", "Content-Type": "application/json", - "traceparent": "00-cd66a50788380544b749b76f39c31999-e776a1d8ec1d7640-00", + "traceparent": "00-630773ab0f77cf468a9908acdcd243fb-4cf18120df92f841-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5de7cd27daaba6e6951bc0eddceaac08", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "5de7cd27-daab-a6e6-951b-c0eddceaac08", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:20 GMT", - "elapsed-time": "115", + "Date": "Fri, 26 Jun 2020 06:10:19 GMT", + "elapsed-time": "135", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -106,17 +106,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "378", "Content-Type": "application/json", - "traceparent": "00-aad6be920540c64cbddd3af3cdce3bc0-4cb09032f11aa341-00", + "traceparent": "00-132679062ac354449bce7c52ef93c731-0b252cae3526b241-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8638f76bb865265973c5f5169a34ec22", "x-ms-return-client-request-id": "true" @@ -160,8 +160,8 @@ "client-request-id": "8638f76b-b865-2659-73c5-f5169a34ec22", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:22 GMT", - "elapsed-time": "62", + "Date": "Fri, 26 Jun 2020 06:10:21 GMT", + "elapsed-time": "22", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,15 +182,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7568f9f8af42524c9cee45ed7d956b65-5efb27d0b1a9cc43-00", + "traceparent": "00-4df195155054654d9da512ab2b7c4be3-aa8507e24c453240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "71a8a1f43dd9dc410cc30f0d308050fb", "x-ms-return-client-request-id": "true" @@ -202,8 +202,8 @@ "client-request-id": "71a8a1f4-3dd9-dc41-0cc3-0f0d308050fb", "Content-Length": "894", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:24 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 06:10:23 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -215,17 +215,17 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:null,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Economy\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:3,\u0022location\u0022:null,\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:null,\u0022descriptionFr\u0022:null,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:10.5,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022balcony\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1738", "Content-Type": "application/json", - "traceparent": "00-2acabe4a415a3e4bb3cd58d0a89e3a04-75dbd4257b986043-00", + "traceparent": "00-015076cd80799c49aa2096bf3b845fd3-f1b9d14e3a60604f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ebf2967c7a9e6fd973c1e9e6e4d00b61", "x-ms-return-client-request-id": "true" @@ -298,8 +298,8 @@ "client-request-id": "ebf2967c-7a9e-6fd9-73c1-e9e6e4d00b61", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:24 GMT", - "elapsed-time": "49", + "Date": "Fri, 26 Jun 2020 06:10:23 GMT", + "elapsed-time": "23", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -320,15 +320,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-57140447b53b53409893d4b64b973462-cbb55e9b13140d4b-00", + "traceparent": "00-8bf2eec12103e64088c4f8d129d32f46-d97fbaea37cfde44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3bf99d2e3b422e2eb65b79a1a94bf5f2", "x-ms-return-client-request-id": "true" @@ -340,8 +340,8 @@ "client-request-id": "3bf99d2e-3b42-2e2e-b65b-79a1a94bf5f2", "Content-Length": "1664", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:26 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:10:25 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -353,15 +353,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027wuaihhjd\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lyvnmeck\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-46b6db0678b2f948b1eecb57ec685d8d-4dc6e3b8fb213848-00", + "traceparent": "00-07183b75e52fd6489db987a85145037b-3f4004a08271b844-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "049af97501417983c739fd18535af73c", "x-ms-return-client-request-id": "true" @@ -371,8 +371,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "049af975-0141-7983-c739-fd18535af73c", - "Date": "Mon, 01 Jun 2020 12:10:26 GMT", - "elapsed-time": "603", + "Date": "Fri, 26 Jun 2020 06:10:25 GMT", + "elapsed-time": "222", "Expires": "-1", "Pragma": "no-cache", "request-id": "049af975-0141-7983-c739-fd18535af73c", @@ -384,8 +384,8 @@ ], "Variables": { "RandomSeed": "1403851089", - "SearchIndexName": "wuaihhjd", + "SearchIndexName": "lyvnmeck", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2d26f258c7a8..03f26f812ec2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/MergeDocumentsDynamicAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1738", "Content-Type": "application/json", - "traceparent": "00-196bcb294b4f6a4d809400fbcd9fea36-5ec963cbad8a3d4c-00", + "traceparent": "00-75074847069d0b4a89a40d71587c3637-edcd237d1547a449-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aaded8341d193314acc7cc8e594a9eb0", "x-ms-return-client-request-id": "true" @@ -84,8 +84,8 @@ "client-request-id": "aaded834-1d19-3314-acc7-cc8e594a9eb0", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:43 GMT", - "elapsed-time": "95", + "Date": "Fri, 26 Jun 2020 06:17:10 GMT", + "elapsed-time": "171", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -106,17 +106,17 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "378", "Content-Type": "application/json", - "traceparent": "00-c33e0cd939ca7f47bbcf16299e2d422c-5445f09bbff58f49-00", + "traceparent": "00-de1469f4028c6c408831896f796da5b1-ba052f7ea21f9e45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d137a2fc58d88813aacc117216d4d3d6", "x-ms-return-client-request-id": "true" @@ -160,8 +160,8 @@ "client-request-id": "d137a2fc-58d8-8813-aacc-117216d4d3d6", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:46 GMT", - "elapsed-time": "49", + "Date": "Fri, 26 Jun 2020 06:17:12 GMT", + "elapsed-time": "18", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -182,15 +182,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-dd30f064e29bcb459a88093991956718-3a777b15a8f74d45-00", + "traceparent": "00-5c6b60a77c623944a8b1dffa75ece062-e865b1d0ef6cc042-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f7125fc117c4ba3a654fd02ab3fee744", "x-ms-return-client-request-id": "true" @@ -202,8 +202,8 @@ "client-request-id": "f7125fc1-17c4-ba3a-654f-d02ab3fee744", "Content-Length": "894", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:48 GMT", - "elapsed-time": "15", + "Date": "Fri, 26 Jun 2020 06:17:14 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -215,17 +215,17 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:null,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Economy\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:3,\u0022location\u0022:null,\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:null,\u0022descriptionFr\u0022:null,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:10.5,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022balcony\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1738", "Content-Type": "application/json", - "traceparent": "00-e7a89bb7c81b9f46bf75bd796ad477f6-2166ea025a50ed41-00", + "traceparent": "00-4fd94a002cb9c74abdd987bd0face5e6-9a1856e13f437c44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3a50e2b9e73cdb67c556004d0ba11dd8", "x-ms-return-client-request-id": "true" @@ -298,8 +298,8 @@ "client-request-id": "3a50e2b9-e73c-db67-c556-004d0ba11dd8", "Content-Length": "74", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:48 GMT", - "elapsed-time": "55", + "Date": "Fri, 26 Jun 2020 06:17:14 GMT", + "elapsed-time": "27", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -320,15 +320,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-5ca0d91aa12ebe4d93f6c806fb528e6d-cc42f2398a26e244-00", + "traceparent": "00-e45a895643c54b40acd69a17fde757cd-19f1f2c3926c194b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "facdf5f3a637e5ec677d6c8888e9d4ab", "x-ms-return-client-request-id": "true" @@ -340,8 +340,8 @@ "client-request-id": "facdf5f3-a637-e5ec-677d-6c8888e9d4ab", "Content-Length": "1664", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:10:50 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:17:17 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -353,15 +353,15 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027gysyigju\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027dihfcfdt\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c599b7a7f7b628489b876259ace46fd8-307ca480a3923441-00", + "traceparent": "00-fb92fb691fa7b54a8300382b4613281e-853b6ade5c076649-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "34b8cde49983d99af737326d17edaec3", "x-ms-return-client-request-id": "true" @@ -371,8 +371,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "34b8cde4-9983-d99a-f737-326d17edaec3", - "Date": "Mon, 01 Jun 2020 12:10:51 GMT", - "elapsed-time": "735", + "Date": "Fri, 26 Jun 2020 06:17:17 GMT", + "elapsed-time": "246", "Expires": "-1", "Pragma": "no-cache", "request-id": "34b8cde4-9983-d99a-f737-326d17edaec3", @@ -384,8 +384,8 @@ ], "Variables": { "RandomSeed": "660557965", - "SearchIndexName": "gysyigju", + "SearchIndexName": "dihfcfdt", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 5dcf252b6307..6bed2255787b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValues.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "2625", "Content-Type": "application/json", - "traceparent": "00-289f062f67aa764b98e416ea038c8c07-6a6002ca74b19c47-00", + "traceparent": "00-e75f76e1dbe81a469a82b9f5cc739162-71162e12a2dea746-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "04d36a16c97e66b037fb770aff04a144", "x-ms-return-client-request-id": "true" @@ -209,8 +209,8 @@ "client-request-id": "04d36a16-c97e-66b0-37fb-770aff04a144", "Content-Length": "389", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:28 GMT", - "elapsed-time": "128", + "Date": "Fri, 26 Jun 2020 06:10:48 GMT", + "elapsed-time": "89", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -261,15 +261,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-7698673402921049b091665a266daaf4-67781c4e38bf6f44-00", + "traceparent": "00-1bcf0903d4f40d4a841b542a06c842d4-c21af3f04198154d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8912016614f3ab8d8fa07c2e886b82ca", "x-ms-return-client-request-id": "true" @@ -281,8 +281,8 @@ "client-request-id": "89120166-14f3-ab8d-8fa0-7c2e886b82ca", "Content-Length": "588", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "18", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -337,15 +337,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00272\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ae79f59e2feceb4fa89e4d708048e623-2172927828e30f49-00", + "traceparent": "00-b7abbfc959bdc64aaede3d7d2dc1dd79-a47e71346e102a4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e960a71a2fdc418f552f994610082ea1", "x-ms-return-client-request-id": "true" @@ -357,8 +357,8 @@ "client-request-id": "e960a71a-2fdc-418f-552f-994610082ea1", "Content-Length": "602", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -415,15 +415,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-33e5899dc2cef0408909de124b40c16a-bcd1e6ac23e23848-00", + "traceparent": "00-4200f7a1de0469459875d2e0361a16a5-aad6befeacbad945-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a0ac7bbf95ce016bdd2875dd4d82decb", "x-ms-return-client-request-id": "true" @@ -435,8 +435,8 @@ "client-request-id": "a0ac7bbf-95ce-016b-dd28-75dd4d82decb", "Content-Length": "457", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "25", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -485,15 +485,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00274\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-8faa8b86ef11a7439c7ef44e0830622e-3ed63563a81fd746-00", + "traceparent": "00-3d43a7d0a747f0418ca7602901a2b654-2b9b7e2254bfa041-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "58f0ac78b7a4366871d134c47b469a86", "x-ms-return-client-request-id": "true" @@ -505,8 +505,8 @@ "client-request-id": "58f0ac78-b7a4-3668-71d1-34c47b469a86", "Content-Length": "364", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -543,15 +543,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00275\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-fe640959a18f874baf5dd6a69d6eb3b5-b2a7210c69b48848-00", + "traceparent": "00-cc05bb32524bc84e87b5e9e7fe93c90c-5eb38efe1935654b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0c6fda72e2bf84fc3b5e0bb4bab1f3d3", "x-ms-return-client-request-id": "true" @@ -563,8 +563,8 @@ "client-request-id": "0c6fda72-e2bf-84fc-3b5e-0bb4bab1f3d3", "Content-Length": "364", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -601,15 +601,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)/docs(\u00276\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-6ee2c19a080e3f48a03332f36261ac19-8a142ff2f600d94a-00", + "traceparent": "00-1bb506cc736757478ffee308c2af47b6-340586b99865ea4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "64cecd50d51807fc13752efd61a78597", "x-ms-return-client-request-id": "true" @@ -621,8 +621,8 @@ "client-request-id": "64cecd50-d518-07fc-1375-2efd61a78597", "Content-Length": "225", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:30 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -648,15 +648,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027orseflxn\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027clmredor\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-084d7fd23e333147a9f2eeb461bd4539-76434c4c0d16c94e-00", + "traceparent": "00-a0e673f9d354154d85402a55bf379e72-11a21b1dc1806c4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "726bee8dd113960cb06c1c45acb37bbf", "x-ms-return-client-request-id": "true" @@ -666,8 +666,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "726bee8d-d113-960c-b06c-1c45acb37bbf", - "Date": "Mon, 01 Jun 2020 12:15:31 GMT", - "elapsed-time": "603", + "Date": "Fri, 26 Jun 2020 06:10:51 GMT", + "elapsed-time": "198", "Expires": "-1", "Pragma": "no-cache", "request-id": "726bee8d-d113-960c-b06c-1c45acb37bbf", @@ -679,8 +679,8 @@ ], "Variables": { "RandomSeed": "1585493960", - "SearchIndexName": "orseflxn", + "SearchIndexName": "clmredor", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 28a9f232d58b..a5a4fe16a77f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/RoundtripBoundaryValuesAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "2625", "Content-Type": "application/json", - "traceparent": "00-e68929da54782f4fb3171e5e8a3bf70a-514aa32b28fff540-00", + "traceparent": "00-3edbe893ad93824a834e36671de4838a-d030a706aa7d3c48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "266e1dfb8c0a70eae757f2c253b6bb2a", "x-ms-return-client-request-id": "true" @@ -209,8 +209,8 @@ "client-request-id": "266e1dfb-8c0a-70ea-e757-f2c253b6bb2a", "Content-Length": "389", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:46 GMT", - "elapsed-time": "128", + "Date": "Fri, 26 Jun 2020 06:17:41 GMT", + "elapsed-time": "107", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -261,15 +261,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-23466512231cdd4bbc9dceba2e137577-f62db014c21a6746-00", + "traceparent": "00-efeaeccbd5feca439d00b797202964e6-04fe6c116c1b3e46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "81ecb5b70e5ac29d617ad34b9959389c", "x-ms-return-client-request-id": "true" @@ -281,8 +281,8 @@ "client-request-id": "81ecb5b7-0e5a-c29d-617a-d34b9959389c", "Content-Length": "588", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -337,15 +337,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00272\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00272\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-36346d483603e04bb415e8bc9fe0eae3-f97051c5edfb0f4a-00", + "traceparent": "00-8c5dee15431def468ca9509c2f1df23b-2f329e06bc5eff4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ec4c78bad13408b7c2cb3ea22762c253", "x-ms-return-client-request-id": "true" @@ -357,7 +357,7 @@ "client-request-id": "ec4c78ba-d134-08b7-c2cb-3ea22762c253", "Content-Length": "602", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", @@ -415,15 +415,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00273\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00273\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c18a5ab66490f54bb047ce04e9cc7f63-e2fe14a3023b4e42-00", + "traceparent": "00-f020aa311bba8a4093eb9468241f4d1a-e412e4cd6b745643-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1605a8916cc2ed437facc490b89fd68d", "x-ms-return-client-request-id": "true" @@ -435,8 +435,8 @@ "client-request-id": "1605a891-6cc2-ed43-7fac-c490b89fd68d", "Content-Length": "457", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -485,15 +485,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00274\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00274\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-06ec9f51f04a4844a826f1465776bfea-0afc759767d7e548-00", + "traceparent": "00-6434165c05fad245bd02ea13ff831ca0-2b662d8462826c49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "da07561fce69e5f6fee3bf8fcffb9bff", "x-ms-return-client-request-id": "true" @@ -505,8 +505,8 @@ "client-request-id": "da07561f-ce69-e5f6-fee3-bf8fcffb9bff", "Content-Length": "364", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -543,15 +543,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00275\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00275\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-dbb5ef7eb1157040b9fdd0c77eaa8abf-7af261e4c4ec5d42-00", + "traceparent": "00-41d04cc523dd7e46b6172069108a74c0-e71e9e0592af7e46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f0b980b721544ed9355e6d880d265023", "x-ms-return-client-request-id": "true" @@ -563,8 +563,8 @@ "client-request-id": "f0b980b7-2154-4ed9-355e-6d880d265023", "Content-Length": "364", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -601,15 +601,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)/docs(\u00276\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)/docs(\u00276\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-4f563239004eff48a113e7415ce0d4e0-064f693a0d868947-00", + "traceparent": "00-83e0cd3a88493b43954d44e9a4529117-ab83971e50cd4c4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d082b0f4e85ac2eab21f18deacb41e83", "x-ms-return-client-request-id": "true" @@ -621,7 +621,7 @@ "client-request-id": "d082b0f4-e85a-c2ea-b21f-18deacb41e83", "Content-Length": "225", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:15:48 GMT", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", @@ -648,15 +648,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027rgtkdayl\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027yqxkuvvf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-ab2f3f242a7994448bb77cfa4a50f22e-8849f9161caa7541-00", + "traceparent": "00-fe2b927c7988004e9d7eaa6081d61fcb-f7d3cc7f9cd36a47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "38d9c411e6e5fd397cb9a40a616dd8d7", "x-ms-return-client-request-id": "true" @@ -666,8 +666,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "38d9c411-e6e5-fd39-7cb9-a40a616dd8d7", - "Date": "Mon, 01 Jun 2020 12:15:49 GMT", - "elapsed-time": "713", + "Date": "Fri, 26 Jun 2020 06:17:43 GMT", + "elapsed-time": "417", "Expires": "-1", "Pragma": "no-cache", "request-id": "38d9c411-e6e5-fd39-7cb9-a40a616dd8d7", @@ -679,8 +679,8 @@ ], "Variables": { "RandomSeed": "1917208391", - "SearchIndexName": "rgtkdayl", + "SearchIndexName": "yqxkuvvf", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 65664aa56b17..bd1e6c3fc538 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vbjpstku\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027kuxvsghm\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "4183", "Content-Type": "application/json", - "traceparent": "00-f6090f0a332af74d817c9a31928c8433-83f52d01e8b9dd42-00", + "traceparent": "00-7e3852f602c7204f95671303dd66b514-6d820f8ec0fbfd47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a0024a861f497bcd454835c9d5f04869", "x-ms-return-client-request-id": "true" @@ -206,8 +206,8 @@ "client-request-id": "a0024a86-1f49-7bcd-4548-35c9d5f04869", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:06:29 GMT", - "elapsed-time": "117", + "Date": "Fri, 26 Jun 2020 06:11:14 GMT", + "elapsed-time": "102", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -252,15 +252,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vbjpstku\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027kuxvsghm\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f1cef72324922e4a88e70da64d809564-6f2bc8c7fbef4847-00", + "traceparent": "00-39ddb7086070d64ebcc19c7453986a6a-ec442c1fe32e164e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5f6c2fedab3301fcb3d186229e3aefec", "x-ms-return-client-request-id": "true" @@ -272,7 +272,7 @@ "client-request-id": "5f6c2fed-ab33-01fc-b3d1-86229e3aefec", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 12:06:32 GMT", + "Date": "Fri, 26 Jun 2020 06:11:16 GMT", "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", @@ -285,15 +285,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027vbjpstku\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027kuxvsghm\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-8311a4d5851d7e4490bf5609bb004baf-106450ddeaa2a74d-00", + "traceparent": "00-b9c544b9281db54ca2239361db1bdf9a-5549ef9fa848804e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2ea803d3fe165584f08121d368813050", "x-ms-return-client-request-id": "true" @@ -303,8 +303,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2ea803d3-fe16-5584-f081-21d368813050", - "Date": "Mon, 01 Jun 2020 12:06:32 GMT", - "elapsed-time": "564", + "Date": "Fri, 26 Jun 2020 06:11:16 GMT", + "elapsed-time": "209", "Expires": "-1", "Pragma": "no-cache", "request-id": "2ea803d3-fe16-5584-f081-21d368813050", @@ -316,8 +316,8 @@ ], "Variables": { "RandomSeed": "216418330", - "SearchIndexName": "vbjpstku", + "SearchIndexName": "kuxvsghm", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2fd2d42f8ae8..d95c9d5fee13 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fslewiae\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwbgvcdi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "4183", "Content-Type": "application/json", - "traceparent": "00-b839df41971c4c479de756cfb3f15ac0-0e51723f6fe0d045-00", + "traceparent": "00-af935e6c735e4140a9824bc6dd61873f-c856de55d6f1a546-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "29f6f4a77f5e31d972d6cd1564c8ad19", "x-ms-return-client-request-id": "true" @@ -206,8 +206,8 @@ "client-request-id": "29f6f4a7-7f5e-31d9-72d6-cd1564c8ad19", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 12:07:14 GMT", - "elapsed-time": "107", + "Date": "Fri, 26 Jun 2020 06:18:06 GMT", + "elapsed-time": "105", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -252,15 +252,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fslewiae\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwbgvcdi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f6354468818cba41b7943c09a6f38650-e71e7e4d5fbfe247-00", + "traceparent": "00-4cbb12b4893b3342a4c8919ab0dafd72-8abad1a19458314a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "af1f911a22849c17a2de57a0c0a6b790", "x-ms-return-client-request-id": "true" @@ -272,8 +272,8 @@ "client-request-id": "af1f911a-2284-9c17-a2de-57a0c0a6b790", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Mon, 01 Jun 2020 12:07:16 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:18:08 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -285,15 +285,15 @@ "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027fslewiae\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027nwbgvcdi\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-0a408d236d081449b5aaef51de740140-48f1b6ed2edda642-00", + "traceparent": "00-df65d7dc09ffdd4790a46cf3ccad008e-d92f0be2f17d8140-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2429633e754415328f09316c404368ac", "x-ms-return-client-request-id": "true" @@ -303,8 +303,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2429633e-7544-1532-8f09-316c404368ac", - "Date": "Mon, 01 Jun 2020 12:07:16 GMT", - "elapsed-time": "767", + "Date": "Fri, 26 Jun 2020 06:18:09 GMT", + "elapsed-time": "299", "Expires": "-1", "Pragma": "no-cache", "request-id": "2429633e-7544-1532-8f09-316c404368ac", @@ -316,8 +316,8 @@ ], "Variables": { "RandomSeed": "1761363080", - "SearchIndexName": "fslewiae", + "SearchIndexName": "nwbgvcdi", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializer.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializer.json index aa504d859106..e0d145a13914 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializer.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializer.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -106,7 +106,7 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -139,7 +139,7 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027nbledbxk\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", @@ -175,4 +175,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-teglaza" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializerAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializerAsync.json index 3a4a0e622619..177fad718a01 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializerAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StaticDocumentsWithCustomSerializerAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -106,7 +106,7 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -139,7 +139,7 @@ "ResponseBody": "{\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}" }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027shbrxcgf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", @@ -175,4 +175,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-teglaza" } -} \ 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 d8acf0e0fff4..56c9f2f86c4c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027elkvfalb\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ysgxmbhw\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1112", "Content-Type": "application/json", - "traceparent": "00-e2e10912321d0f47bb8d5fda0e1ecd87-f66517bcab0f3846-00", + "traceparent": "00-21c9e26306e98340beba410591fd06e8-dd3b5507aad49148-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "501db6d588ced0205f301700abe23d25", "x-ms-return-client-request-id": "true" @@ -58,16 +58,18 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "501db6d5-88ce-d020-5f30-1700abe23d25", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:55:00 GMT", - "elapsed-time": "178", + "Date": "Fri, 26 Jun 2020 06:11:40 GMT", + "elapsed-time": "158", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "501db6d5-88ce-d020-5f30-1700abe23d25", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "501db6d5-88ce-d020-5f30-1700abe23d25" }, "ResponseBody": { "value": [ @@ -105,15 +107,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027elkvfalb\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ysgxmbhw\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ad839578eea5bc45bac5806a6638f947-1d19f31fbaf52f4a-00", + "traceparent": "00-109ef2ee37ceb94388cff761bb9466f6-17e4c69f04a6844b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9fd9e453d8455e329458757c578c9a23", "x-ms-return-client-request-id": "true" @@ -122,29 +124,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9fd9e453-d845-5e32-9458-757c578c9a23", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 06:55:01 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 06:11:42 GMT", + "elapsed-time": "18", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9fd9e453-d845-5e32-9458-757c578c9a23", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9fd9e453-d845-5e32-9458-757c578c9a23" }, "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027elkvfalb\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ysgxmbhw\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-06049606fc1f7d4e93d6e58e581ff8cf-d57e215c1a587b4e-00", + "traceparent": "00-50478f82c2344c4297d072abf38c290f-53358cf6c967d54c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3e0a80fb0386762496901294112d7e55", "x-ms-return-client-request-id": "true" @@ -153,20 +157,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:55:01 GMT", - "elapsed-time": "210", + "client-request-id": "3e0a80fb-0386-7624-9690-1294112d7e55", + "Date": "Fri, 26 Jun 2020 06:11:42 GMT", + "elapsed-time": "882", "Expires": "-1", "Pragma": "no-cache", "request-id": "3e0a80fb-0386-7624-9690-1294112d7e55", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3e0a80fb-0386-7624-9690-1294112d7e55" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1484375429", - "SearchIndexName": "elkvfalb", + "SearchIndexName": "ysgxmbhw", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 93f8c2dda5d4..61823d0122b4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/StructDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027ebjegqcl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evjakpkb\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "1112", "Content-Type": "application/json", - "traceparent": "00-a83dac2667371644bee8af3ee924d158-4438418a4217cc49-00", + "traceparent": "00-f3990a2736c3cf4388096e4a175283bc-fbfccbd171faf04c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f030d49b8b4987465338499c35df9763", "x-ms-return-client-request-id": "true" @@ -58,16 +58,18 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f030d49b-8b49-8746-5338-499c35df9763", "Content-Length": "344", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:00:26 GMT", - "elapsed-time": "95", + "Date": "Fri, 26 Jun 2020 06:18:32 GMT", + "elapsed-time": "317", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f030d49b-8b49-8746-5338-499c35df9763", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f030d49b-8b49-8746-5338-499c35df9763" }, "ResponseBody": { "value": [ @@ -105,15 +107,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027ebjegqcl\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evjakpkb\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-82311c78dfa9794385223c3ac79c6cc1-b0cded5e1bf89549-00", + "traceparent": "00-088c86b7cb85c44e990fec936e6d47b4-48b5b37d6c38d34b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9dca118d52b3c674fae1a382b8a1e644", "x-ms-return-client-request-id": "true" @@ -122,29 +124,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9dca118d-52b3-c674-fae1-a382b8a1e644", "Content-Length": "4", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:00:28 GMT", + "Date": "Fri, 26 Jun 2020 06:18:34 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9dca118d-52b3-c674-fae1-a382b8a1e644", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9dca118d-52b3-c674-fae1-a382b8a1e644" }, "ResponseBody": "\uFEFF3" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027ebjegqcl\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evjakpkb\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a0fb58ced0c3684e9a6645ea530659b3-1bf6cc1a622b9245-00", + "traceparent": "00-20afd2133fcfec48b8d5bb43b3c5d285-aef6dde8fd79514c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "63cac7bca6446e05b01f4ec3ba205083", "x-ms-return-client-request-id": "true" @@ -153,20 +157,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:00:28 GMT", - "elapsed-time": "222", + "client-request-id": "63cac7bc-a644-6e05-b01f-4ec3ba205083", + "Date": "Fri, 26 Jun 2020 06:18:34 GMT", + "elapsed-time": "257", "Expires": "-1", "Pragma": "no-cache", "request-id": "63cac7bc-a644-6e05-b01f-4ec3ba205083", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "63cac7bc-a644-6e05-b01f-4ec3ba205083" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "126748610", - "SearchIndexName": "ebjegqcl", + "SearchIndexName": "evjakpkb", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateException.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateException.json index bfed29aa2386..dddef12fa0ae 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateException.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateException.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027dlbklxly\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mbddhkpj\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "769", "Content-Type": "application/json", - "traceparent": "00-56538a70e05fb145a5d36fa30be3582c-91ae2dcdd8fd9248-00", + "traceparent": "00-0f358074f958dc4d927780fcb89c6c44-030bde2c3bf2a240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200609.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f96451fd9a9bb6aa27a641cc3cfd13f5", "x-ms-return-client-request-id": "true" @@ -74,8 +74,8 @@ "client-request-id": "f96451fd-9a9b-b6aa-27a6-41cc3cfd13f5", "Content-Length": "236", "Content-Type": "application/json; odata.metadata=none", - "Date": "Tue, 09 Jun 2020 17:49:55 GMT", - "elapsed-time": "149", + "Date": "Fri, 26 Jun 2020 06:12:06 GMT", + "elapsed-time": "163", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,15 +108,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027dlbklxly\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mbddhkpj\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-1025e9b5b0f4a541ac49a0886253db5d-eb1072ae1d911b44-00", + "traceparent": "00-fc1a357ffd4c90418d18efabfa45d60c-a6aabc13bac6bd43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200609.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a64b5fc1cb1f757cc93173215f4860fa", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "a64b5fc1-cb1f-757c-c931-73215f4860fa", - "Date": "Tue, 09 Jun 2020 17:49:55 GMT", - "elapsed-time": "562", + "Date": "Fri, 26 Jun 2020 06:12:06 GMT", + "elapsed-time": "200", "Expires": "-1", "Pragma": "no-cache", "request-id": "a64b5fc1-cb1f-757c-c931-73215f4860fa", @@ -139,8 +139,8 @@ ], "Variables": { "RandomSeed": "824277234", - "SearchIndexName": "dlbklxly", + "SearchIndexName": "mbddhkpj", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateExceptionAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateExceptionAsync.json index f7493f254824..fdf3b9080957 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateExceptionAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsAggregateExceptionAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tyfrjlun\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027eupgcflp\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "769", "Content-Type": "application/json", - "traceparent": "00-69894115f0c4f84d968942ce8ad0ae23-362ded8726065a46-00", + "traceparent": "00-888fd72853992c4599087646faa53f6e-94d1b74258abb240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200609.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e1dc2a35bb449e391f375bd48651e32e", "x-ms-return-client-request-id": "true" @@ -74,8 +74,8 @@ "client-request-id": "e1dc2a35-bb44-9e39-1f37-5bd48651e32e", "Content-Length": "236", "Content-Type": "application/json; odata.metadata=none", - "Date": "Tue, 09 Jun 2020 17:50:03 GMT", - "elapsed-time": "108", + "Date": "Fri, 26 Jun 2020 06:18:58 GMT", + "elapsed-time": "118", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -108,15 +108,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tyfrjlun\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027eupgcflp\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-8444f103170938408ca1e45d39aceb92-fbe40280ed9fd548-00", + "traceparent": "00-70031baa5b2a0f4fb81f58ae8b116fb0-17bae398006e374c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200609.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e7e1f3e58ea4e2d056c9eda841626f26", "x-ms-return-client-request-id": "true" @@ -126,8 +126,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "e7e1f3e5-8ea4-e2d0-56c9-eda841626f26", - "Date": "Tue, 09 Jun 2020 17:50:03 GMT", - "elapsed-time": "563", + "Date": "Fri, 26 Jun 2020 06:18:58 GMT", + "elapsed-time": "244", "Expires": "-1", "Pragma": "no-cache", "request-id": "e7e1f3e5-8ea4-e2d0-56c9-eda841626f26", @@ -139,8 +139,8 @@ ], "Variables": { "RandomSeed": "1044182692", - "SearchIndexName": "tyfrjlun", + "SearchIndexName": "eupgcflp", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c6e525a3308f..1917e5bc643a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocument.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027drdmimow\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027irnewabp\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-fabf19c87ce4854789ee0e01733ebdf2-a9f06b36d4ed8740-00", + "traceparent": "00-7297332e1cd35a4e9a0d7660588ce3a0-994aeb9f9d876248-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "675687be5f4018261f4dd6c97e64c115", "x-ms-return-client-request-id": "true" @@ -26,17 +26,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "675687be-5f40-1826-1f4d-d6c97e64c115", "Content-Language": "en", "Content-Length": "124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:55:22 GMT", - "elapsed-time": "62", + "Date": "Fri, 26 Jun 2020 06:12:29 GMT", + "elapsed-time": "75", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "675687be-5f40-1826-1f4d-d6c97e64c115", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "675687be-5f40-1826-1f4d-d6c97e64c115" }, "ResponseBody": { "error": { @@ -46,15 +48,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027drdmimow\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027irnewabp\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-49aa79174201e2459d74c8aa1c973b1b-736f03f0a8786b46-00", + "traceparent": "00-81a991edcffaa74193e848c794797231-54b4158e0fbc6049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4d64c218771b3b580d58d15764058397", "x-ms-return-client-request-id": "true" @@ -63,20 +65,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:55:23 GMT", - "elapsed-time": "246", + "client-request-id": "4d64c218-771b-3b58-0d58-d15764058397", + "Date": "Fri, 26 Jun 2020 06:12:29 GMT", + "elapsed-time": "218", "Expires": "-1", "Pragma": "no-cache", "request-id": "4d64c218-771b-3b58-0d58-d15764058397", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4d64c218-771b-3b58-0d58-d15764058397" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "687109065", - "SearchIndexName": "drdmimow", + "SearchIndexName": "irnewabp", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0dcd1e60b934..c562c482a9a9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnInvalidDocumentAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027hqmrjpke\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lgiklwjc\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-efbbbc0d742f034bb1709c8f78fe4c99-06f1e981c7e9204b-00", + "traceparent": "00-5a4300736778f84984295f8cc2869ce3-d885cd6d78bf2146-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "671adb4c286def740ec75df15d888225", "x-ms-return-client-request-id": "true" @@ -26,17 +26,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "671adb4c-286d-ef74-0ec7-5df15d888225", "Content-Language": "en", "Content-Length": "124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:00:48 GMT", - "elapsed-time": "69", + "Date": "Fri, 26 Jun 2020 06:19:21 GMT", + "elapsed-time": "64", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "671adb4c-286d-ef74-0ec7-5df15d888225", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "671adb4c-286d-ef74-0ec7-5df15d888225" }, "ResponseBody": { "error": { @@ -46,15 +48,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027hqmrjpke\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027lgiklwjc\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-3958d7aef3a9f747bfd828913552e0c1-1a52a555b24a0b4d-00", + "traceparent": "00-5175e990cdca7b4bbdedde10baf4f84a-607635dd854e4044-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5e694e5d4ec42448bf589ed00ab0ddd0", "x-ms-return-client-request-id": "true" @@ -63,20 +65,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:00:50 GMT", - "elapsed-time": "177", + "client-request-id": "5e694e5d-4ec4-2448-bf58-9ed00ab0ddd0", + "Date": "Fri, 26 Jun 2020 06:19:23 GMT", + "elapsed-time": "2379", "Expires": "-1", "Pragma": "no-cache", "request-id": "5e694e5d-4ec4-2448-bf58-9ed00ab0ddd0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5e694e5d-4ec4-2448-bf58-9ed00ab0ddd0" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1159546087", - "SearchIndexName": "hqmrjpke", + "SearchIndexName": "lgiklwjc", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 43be178eb24a..141492b1e662 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAsked.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tagqwctl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vyijhcke\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "518", "Content-Type": "application/json", - "traceparent": "00-be93223e203af2428a6cf179c6cf8ed7-835690a2b730a946-00", + "traceparent": "00-72a7ccc3d9f8ac44b9afda5e65da7969-204ee736a359af44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d5ce6a6c5c540ae091560e3e47589eb7", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "d5ce6a6c-5c54-0ae0-9156-0e3e47589eb7", "Content-Length": "155", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:33:48 GMT", - "elapsed-time": "255", + "Date": "Fri, 26 Jun 2020 06:12:52 GMT", + "elapsed-time": "107", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027tagqwctl\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027vyijhcke\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-71d6d0fe18a6a948b27464b9b5724e35-cb4307ed29713549-00", + "traceparent": "00-d6c214d1d38b7641a0a0e79e61330605-4890b5e5ab59bd46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b9cae2ededf3fe00a43fefa9d149d916", "x-ms-return-client-request-id": "true" @@ -104,8 +104,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "b9cae2ed-edf3-fe00-a43f-efa9d149d916", - "Date": "Mon, 01 Jun 2020 11:33:48 GMT", - "elapsed-time": "816", + "Date": "Fri, 26 Jun 2020 06:12:52 GMT", + "elapsed-time": "178", "Expires": "-1", "Pragma": "no-cache", "request-id": "b9cae2ed-edf3-fe00-a43f-efa9d149d916", @@ -117,8 +117,8 @@ ], "Variables": { "RandomSeed": "276729186", - "SearchIndexName": "tagqwctl", + "SearchIndexName": "vyijhcke", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3a6ae5eeeb9b..30dc7f1885cd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsOnPartialSuccessWhenAskedAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027jqwxncep\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xhlckwla\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "518", "Content-Type": "application/json", - "traceparent": "00-d6fb8140f0a7b34a91eceef41019b2b8-a4f1942ef2b88149-00", + "traceparent": "00-78cfc933d7e9a844b5cd56beaf583d10-5d8e00caff24ae46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "04bc46f5376814253de8557a155fc3da", "x-ms-return-client-request-id": "true" @@ -58,8 +58,8 @@ "client-request-id": "04bc46f5-3768-1425-3de8-557a155fc3da", "Content-Length": "155", "Content-Type": "application/json; odata.metadata=none", - "Date": "Mon, 01 Jun 2020 11:37:14 GMT", - "elapsed-time": "177", + "Date": "Fri, 26 Jun 2020 06:19:46 GMT", + "elapsed-time": "103", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -86,15 +86,15 @@ } }, { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027jqwxncep\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xhlckwla\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5b68f732e363304dbe150feb32b47f9f-33986510e0c4d443-00", + "traceparent": "00-dfe2cb697c70af40984d56cea8eabbe9-7d91afff8aff4149-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200601.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bcb8b5d8fbdfb9ec92ad1c84186d8e7f", "x-ms-return-client-request-id": "true" @@ -104,8 +104,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "bcb8b5d8-fbdf-b9ec-92ad-1c84186d8e7f", - "Date": "Mon, 01 Jun 2020 11:37:14 GMT", - "elapsed-time": "535", + "Date": "Fri, 26 Jun 2020 06:19:46 GMT", + "elapsed-time": "207", "Expires": "-1", "Pragma": "no-cache", "request-id": "bcb8b5d8-fbdf-b9ec-92ad-1c84186d8e7f", @@ -117,8 +117,8 @@ ], "Variables": { "RandomSeed": "500651422", - "SearchIndexName": "jqwxncep", + "SearchIndexName": "xhlckwla", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c3aad79f9bda..bf5b1eba43ed 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKey.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027ifwbkrlm\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rjnsxdxb\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-5948c50997489040b87d7d051605c3e8-a185a264ac9baa4e-00", + "traceparent": "00-6936dc7d1ea2db4ab4fab845487f8875-187dd96f3481d141-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cbc31d4dbd8a2fc4e121ff629bd129b8", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "cbc31d4d-bd8a-2fc4-e121-ff629bd129b8", "Content-Length": "93", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 06:56:06 GMT", - "elapsed-time": "79", + "Date": "Fri, 26 Jun 2020 06:13:15 GMT", + "elapsed-time": "70", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "cbc31d4d-bd8a-2fc4-e121-ff629bd129b8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "cbc31d4d-bd8a-2fc4-e121-ff629bd129b8" }, "ResponseBody": { "value": [ @@ -50,15 +52,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027ifwbkrlm\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rjnsxdxb\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c5a1f023bc914748bc9c24ae2b88697c-bad32e6c0033aa45-00", + "traceparent": "00-3b6f22064584e145b4186f89187e3571-5a420f69dbc14240-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "18d1f9c85e5e31dee9ebbbb4e360deb1", "x-ms-return-client-request-id": "true" @@ -67,20 +69,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 06:56:06 GMT", - "elapsed-time": "180", + "client-request-id": "18d1f9c8-5e5e-31de-e9eb-bbb4e360deb1", + "Date": "Fri, 26 Jun 2020 06:13:15 GMT", + "elapsed-time": "211", "Expires": "-1", "Pragma": "no-cache", "request-id": "18d1f9c8-5e5e-31de-e9eb-bbb4e360deb1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "18d1f9c8-5e5e-31de-e9eb-bbb4e360deb1" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1230788505", - "SearchIndexName": "ifwbkrlm", + "SearchIndexName": "rjnsxdxb", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 457ab8a56cd8..d8c1421e596f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/IndexingTests/ThrowsWhenMergingWithNewKeyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mevcmyls\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027exafucii\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "53", "Content-Type": "application/json", - "traceparent": "00-afa67eb87cdf62448a705efe85dcf281-59ce5132b3c6114a-00", + "traceparent": "00-4801105c52b8bd4aa1c14d81134b2236-a32a6ae09cdcf847-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9454778a86456b312a3ea4e6ea1645c0", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 207, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9454778a-8645-6b31-2a3e-a4e6ea1645c0", "Content-Length": "93", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "144", + "Date": "Fri, 26 Jun 2020 06:20:10 GMT", + "elapsed-time": "88", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9454778a-8645-6b31-2a3e-a4e6ea1645c0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9454778a-8645-6b31-2a3e-a4e6ea1645c0" }, "ResponseBody": { "value": [ @@ -50,15 +52,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027mevcmyls\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027exafucii\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a61b4973b0683d45a8884a6567e05945-4e0db6a2cd436f44-00", + "traceparent": "00-ded6cf5dd1959d4f84c6e53b0405eda8-778b58802f218e45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1fdcabe2f3f0fd21e68342911b905551", "x-ms-return-client-request-id": "true" @@ -67,20 +69,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:01:32 GMT", - "elapsed-time": "425", + "client-request-id": "1fdcabe2-f3f0-fd21-e683-42911b905551", + "Date": "Fri, 26 Jun 2020 06:20:10 GMT", + "elapsed-time": "264", "Expires": "-1", "Pragma": "no-cache", "request-id": "1fdcabe2-f3f0-fd21-e683-42911b905551", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1fdcabe2-f3f0-fd21-e683-42911b905551" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1670034816", - "SearchIndexName": "mevcmyls", + "SearchIndexName": "exafucii", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Authenticate.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Authenticate.json index 648799cdfcaa..a766e8b5778d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Authenticate.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Authenticate.json @@ -1,8 +1,8 @@ { "Entries": [], "Variables": { - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7cd8ae6b2819..75356ee58717 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQuery.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -61,7 +61,7 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -127,4 +127,4 @@ "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQueryAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQueryAsync.json index 3f86361d7d2d..915bbab42657 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQueryAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateAndQueryAsync.json @@ -1,7 +1,7 @@ { "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-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -74,7 +74,7 @@ } }, { - "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-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -152,4 +152,4 @@ "SearchIndexName": "vtuoookl", "SearchServiceName": "azs-net-eckudmjl" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateIndex.json index 1700d6807a05..18c8865e111f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/CreateIndex.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", @@ -9,8 +9,8 @@ "Content-Length": "1505", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ec8f1b224af8d9bff1f430bc1b15db2c", "x-ms-return-client-request-id": "true" @@ -130,22 +130,24 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2478", + "client-request-id": "ec8f1b22-4af8-d9bf-f1f4-30bc1b15db2c", + "Content-Length": "2549", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:01:34 GMT", - "elapsed-time": "756", - "ETag": "W/\u00220x8D7F31DA513EDAE\u0022", + "Date": "Fri, 26 Jun 2020 06:25:31 GMT", + "elapsed-time": "768", + "ETag": "W/\u00220x8D81999BA166E18\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wldfvoaj\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wldfvoaj\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ec8f1b22-4af8-d9bf-f1f4-30bc1b15db2c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ec8f1b22-4af8-d9bf-f1f4-30bc1b15db2c" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7F31DA513EDAE\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D81999BA166E18\u0022", "name": "wldfvoaj", "defaultScoringProfile": null, "fields": [ @@ -299,7 +301,11 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } } ], @@ -307,6 +313,6 @@ "RandomSeed": "2102937546", "SearchIndexName": null, "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/GetDocument.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/GetDocument.json index 2c3eb26ad1d8..5702f7876088 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/GetDocument.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/GetDocument.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027htffewvo\u0027)/docs(\u00271\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u00271\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200615.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f3ceff4513b1ace31223fc6345609397", @@ -20,8 +20,8 @@ "client-request-id": "f3ceff45-13b1-ace3-1223-fc6345609397", "Content-Length": "940", "Content-Type": "application/json; odata.metadata=none", - "Date": "Tue, 16 Jun 2020 00:02:38 GMT", - "elapsed-time": "69", + "Date": "Fri, 26 Jun 2020 06:25:32 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -35,8 +35,7 @@ ], "Variables": { "RandomSeed": "509178331", - "SearchIndexName": "htffewvo", - "SEARCH_ADMIN_API_KEY": "Sanitized", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } 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 72892257baf2..f4373c9736ee 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Index.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027manpwrey\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027kltotrwh\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -9,8 +9,8 @@ "Content-Length": "152", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "024524334adee593f5ff620e2e46cb84", "x-ms-return-client-request-id": "true" @@ -32,17 +32,19 @@ "StatusCode": 403, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "02452433-4ade-e593-f5ff-620e2e46cb84", "Content-Language": "en", "Content-Length": "55", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "59", + "Date": "Fri, 26 Jun 2020 06:25:54 GMT", + "elapsed-time": "204", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "02452433-4ade-e593-f5ff-620e2e46cb84", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "02452433-4ade-e593-f5ff-620e2e46cb84" }, "ResponseBody": { "error": { @@ -52,15 +54,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027manpwrey\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027kltotrwh\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-6780f2b3b09a5a468dc6796067a71c9a-33c39f62d1d6ac4c-00", + "traceparent": "00-002331aa2e087240b7d4deda3b859b16-3d60eccee9c8dd4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a522fd35141b7174122ccf9c9ccbaae0", "x-ms-return-client-request-id": "true" @@ -69,21 +71,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "171", + "client-request-id": "a522fd35-141b-7174-122c-cf9c9ccbaae0", + "Date": "Fri, 26 Jun 2020 06:25:54 GMT", + "elapsed-time": "179", "Expires": "-1", "Pragma": "no-cache", "request-id": "a522fd35-141b-7174-122c-cf9c9ccbaae0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a522fd35-141b-7174-122c-cf9c9ccbaae0" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "978400005", - "SearchIndexName": "manpwrey", + "SearchIndexName": "kltotrwh", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2a6598d29be1..4dc72a51c02f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Options.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -9,8 +9,8 @@ "Content-Length": "109", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4cbbd33490420dee971451eace00649b", "x-ms-return-client-request-id": "true" @@ -26,48 +26,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "872", + "client-request-id": "4cbbd334-9042-0dee-9714-51eace00649b", + "Content-Length": "978", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "107", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", + "elapsed-time": "98", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "4cbbd334-9042-0dee-9714-51eace00649b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4cbbd334-9042-0dee-9714-51eace00649b" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.7486069, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:2.8563762,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "1402132638", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/OptionsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/OptionsAsync.json index 68b1690aaf30..8b06e76bbb75 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/OptionsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/OptionsAsync.json @@ -1,7 +1,7 @@ { "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-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -82,4 +82,4 @@ "SearchIndexName": "vtuoookl", "SearchServiceName": "azs-net-eckudmjl" } -} \ 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 94ac8f94c447..d05af93456a1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStatic.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -9,8 +9,8 @@ "Content-Length": "54", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3ca72ac76a8c267bd9f5e5c0f47395a4", "x-ms-return-client-request-id": "true" @@ -23,55 +23,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "872", + "client-request-id": "3ca72ac7-6a8c-267b-d9f5-e5c0f47395a4", + "Content-Length": "978", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3ca72ac7-6a8c-267b-d9f5-e5c0f47395a4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3ca72ac7-6a8c-267b-d9f5-e5c0f47395a4" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.7486069, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:2.8563762,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-9e39cd7c6f54ec4e829b10eab4f19733-8cec5c94398b0b48-00", + "traceparent": "00-26695e483db5794ab776d8a4e04c73fe-aa3546f6366be44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c4773c05d66cb29c12ab04f8a2e9b0c8", "x-ms-return-client-request-id": "true" @@ -84,48 +62,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "872", + "client-request-id": "c4773c05-d66c-b29c-12ab-04f8a2e9b0c8", + "Content-Length": "978", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c4773c05-d66c-b29c-12ab-04f8a2e9b0c8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c4773c05-d66c-b29c-12ab-04f8a2e9b0c8" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.7486069, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:2.8563762,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "549811099", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStaticAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStaticAsync.json index 18bb1071b54d..fdd3b683b00e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/QueryStaticAsync.json @@ -1,7 +1,7 @@ { "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-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -74,7 +74,7 @@ } }, { - "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-eckudmjl.search.windows.net/indexes(\u0027vtuoookl\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -152,4 +152,4 @@ "SearchIndexName": "vtuoookl", "SearchServiceName": "azs-net-eckudmjl" } -} \ 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 3e45c3f6be03..6f6fd0660ecc 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/Troubleshooting.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs(\u002712345\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs(\u002712345\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7c34fbb2dd26e95ef8b150d6b9aa6381", "x-ms-return-client-request-id": "true" @@ -17,21 +17,23 @@ "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "7c34fbb2-dd26-e95e-f8b1-50d6b9aa6381", "Content-Length": "0", - "Date": "Fri, 08 May 2020 07:01:56 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", + "elapsed-time": "5", "Expires": "-1", "Pragma": "no-cache", "request-id": "7c34fbb2-dd26-e95e-f8b1-50d6b9aa6381", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "7c34fbb2-dd26-e95e-f8b1-50d6b9aa6381" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1565637229", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/TroubleshootingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/TroubleshootingAsync.json index 752e3a9007f5..7d3b8a4c7a8b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/TroubleshootingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/Readme/TroubleshootingAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-cdhjjuub.search.windows.net/indexes(\u0027ckvocyyt\u0027)/docs(\u002712345\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-cdhjjuub.search.windows.net/indexes(\u0027ckvocyyt\u0027)/docs(\u002712345\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "api-key": "Sanitized", @@ -33,4 +33,4 @@ "SearchIndexName": "ckvocyyt", "SearchServiceName": "azs-net-cdhjjuub" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCount.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCount.json index d17224f8313b..e4c78809876f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCount.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCount.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-ca8f4bfe1a9dc9459851418ea1fbb0c2-89c18e6a79e19c42-00", + "traceparent": "00-c60d4e44fb72ee44ab6e5cb70ca4d207-38c6da7426ba7b41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "04ce36d25a63d7f396c87d6107fb3733", "x-ms-return-client-request-id": "true" @@ -18,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "04ce36d2-5a63-d7f3-96c8-7d6107fb3733", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:01:56 GMT", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "04ce36d2-5a63-d7f3-96c8-7d6107fb3733", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "04ce36d2-5a63-d7f3-96c8-7d6107fb3733" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "1899812036", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCountAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCountAsync.json index bf3bb6c32f68..2ee8b0506f81 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchClientTests/GetDocumentCountAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-c3393d3ceaab5a47b9c5ab535a9caa2a-00bb6ced321a6542-00", + "traceparent": "00-20cb75f1786fb94e98c6529f41f378b8-f036e4b4b8aacf47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d3288d7ff70d1713de50a1c1dd2f20a8", "x-ms-return-client-request-id": "true" @@ -18,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "d3288d7f-f70d-1713-de50-a1c1dd2f20a8", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:01:56 GMT", + "Date": "Fri, 26 Jun 2020 06:25:56 GMT", "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d3288d7f-f70d-1713-de50-a1c1dd2f20a8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d3288d7f-f70d-1713-de50-a1c1dd2f20a8" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "1772541862", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeText.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeText.json index 883af27c73f5..639157ef5240 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeText.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeText.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027omcjubbl\u0027)/search.analyze?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/search.analyze?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "81", "Content-Type": "application/json", - "traceparent": "00-0fcda9bf5af6cc4ab507afc2cde9ff76-d9390cf074ea274c-00", + "traceparent": "00-fae9fd41b3ac3b48a272facdbced8e22-ea01f5e7e9711343-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b6bb294210d3599c5ce1600661618eab", "x-ms-return-client-request-id": "true" @@ -24,10 +24,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "b6bb2942-10d3-599c-5ce1-600661618eab", - "Content-Length": "701", + "Content-Length": "693", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 04 Jun 2020 02:02:51 GMT", - "elapsed-time": "41", + "Date": "Fri, 26 Jun 2020 06:25:57 GMT", + "elapsed-time": "31", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +37,7 @@ "x-ms-client-request-id": "b6bb2942-10d3-599c-5ce1-600661618eab" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.AnalyzeResult", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult", "tokens": [ { "token": "The", @@ -99,7 +99,7 @@ ], "Variables": { "RandomSeed": "398631221", - "SearchIndexName": "omcjubbl", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeTextAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeTextAsync.json index 68fb02aab69b..8d2c9206803c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeTextAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/AnalyzeTextAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027omcjubbl\u0027)/search.analyze?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/search.analyze?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "81", "Content-Type": "application/json", - "traceparent": "00-2814f435f4dcd24e9d2ab4ee73d60e28-90ec2e1c86b12949-00", + "traceparent": "00-c9126f3051ebde47ac0d0b80fee2173c-cfb1b22a9adb4c4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "768227d217ad9009492ef7abdef00368", "x-ms-return-client-request-id": "true" @@ -24,10 +24,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "768227d2-17ad-9009-492e-f7abdef00368", - "Content-Length": "701", + "Content-Length": "693", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Thu, 04 Jun 2020 02:02:51 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:26:32 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -37,7 +37,7 @@ "x-ms-client-request-id": "768227d2-17ad-9009-492e-f7abdef00368" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.AnalyzeResult", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult", "tokens": [ { "token": "The", @@ -99,7 +99,7 @@ ], "Variables": { "RandomSeed": "197061334", - "SearchIndexName": "omcjubbl", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndex.json index cb7541aed5dc..a55e0298e603 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndex.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-abda30517e26cd409b93a7cde976e642-4b06b30bfe8bf34c-00", + "traceparent": "00-18468c020b16164fa84516eecfe4bc6a-b6cadd6df38bfa44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5cad1ef4d125aded2bffeebfd431dec8", "x-ms-return-client-request-id": "true" @@ -307,22 +307,24 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6162", + "client-request-id": "5cad1ef4-d125-aded-2bff-eebfd431dec8", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "779", - "ETag": "W/\u00220x8D7F31DD847747B\u0022", + "Date": "Fri, 26 Jun 2020 06:25:58 GMT", + "elapsed-time": "786", + "ETag": "W/\u00220x8D81999CA44C838\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5cad1ef4-d125-aded-2bff-eebfd431dec8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5cad1ef4-d125-aded-2bff-eebfd431dec8" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7F31DD847747B\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D81999CA44C838\u0022", "name": "wvhobppu", "defaultScoringProfile": null, "fields": [ @@ -713,19 +715,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wvhobppu\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-01e4c841192ed34aa0344418befe77ea-105f552332881b40-00", + "traceparent": "00-89d228c953587a4180205a7e8a04e903-ede49db5800cc74d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d6e52008fe3a95c5a76f10680172906f", "x-ms-return-client-request-id": "true" @@ -734,12 +740,14 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "267", + "client-request-id": "d6e52008-fe3a-95c5-a76f-10680172906f", + "Date": "Fri, 26 Jun 2020 06:25:58 GMT", + "elapsed-time": "318", "Expires": "-1", "Pragma": "no-cache", "request-id": "d6e52008-fe3a-95c5-a76f-10680172906f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d6e52008-fe3a-95c5-a76f-10680172906f" }, "ResponseBody": [] } @@ -748,6 +756,6 @@ "RandomSeed": "96077012", "SearchIndexName": "wvhobppu", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndexAsync.json index ec204901426f..8f6afc4e9be7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CreateIndexAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-bcb645e649be7949912750ad0edee65a-cd8675044cd9d045-00", + "traceparent": "00-14b81c32d71bc84b8c324883c328e0dd-713e1a8f7a273a44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aa80379a73db164d8f4210e420ecefbc", "x-ms-return-client-request-id": "true" @@ -307,22 +307,24 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6162", + "client-request-id": "aa80379a-73db-164d-8f42-10e420ecefbc", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:18 GMT", - "elapsed-time": "446", - "ETag": "W/\u00220x8D7F31E076CECE9\u0022", + "Date": "Fri, 26 Jun 2020 06:26:32 GMT", + "elapsed-time": "793", + "ETag": "W/\u00220x8D81999DF21584C\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "aa80379a-73db-164d-8f42-10e420ecefbc", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "aa80379a-73db-164d-8f42-10e420ecefbc" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7F31E076CECE9\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D81999DF21584C\u0022", "name": "tkubrcbf", "defaultScoringProfile": null, "fields": [ @@ -713,19 +715,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tkubrcbf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f41eaf643ac63040a69296b2b0430335-e7142f9ca1fc994b-00", + "traceparent": "00-d4d707bbfd24454f9ace016d2229e83f-6d3198f1926b8740-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "48422d284ea7facf3728c9c3bc301ed9", "x-ms-return-client-request-id": "true" @@ -734,12 +740,14 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "314", + "client-request-id": "48422d28-4ea7-facf-3728-c9c3bc301ed9", + "Date": "Fri, 26 Jun 2020 06:26:33 GMT", + "elapsed-time": "192", "Expires": "-1", "Pragma": "no-cache", "request-id": "48422d28-4ea7-facf-3728-c9c3bc301ed9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "48422d28-4ea7-facf-3728-c9c3bc301ed9" }, "ResponseBody": [] } @@ -748,6 +756,6 @@ "RandomSeed": "1121409174", "SearchIndexName": "tkubrcbf", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMaps.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMaps.json index 3703c2e95edf..d5d3e661a23a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMaps.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMaps.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "69", "Content-Type": "application/json", - "traceparent": "00-aaebb1d130393c44b85181d0fcfdb39c-1ec83782d9258940-00", + "traceparent": "00-ae415338c2399640ad8c31d2b78450f9-eed2c0f2e2a7e14d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e774d64a0e1ee1ed26d81ec8b16be261", "x-ms-return-client-request-id": "true" @@ -24,22 +24,24 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e774d64a-0e1e-e1ed-26d8-1ec8b16be261", "Content-Length": "220", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "73", - "ETag": "W/\u00220x8D7F31DD891D15D\u0022", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "30", + "ETag": "W/\u00220x8D81999CBE57DE1\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e774d64a-0e1e-e1ed-26d8-1ec8b16be261", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e774d64a-0e1e-e1ed-26d8-1ec8b16be261" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31DD891D15D\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999CBE57DE1\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "msft=\u003EMicrosoft", @@ -47,19 +49,19 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "118", "Content-Type": "application/json", - "If-Match": "\u00220x8D7F31DD891D15D\u0022", + "If-Match": "\u00220x8D81999CBE57DE1\u0022", "Prefer": "return=representation", - "traceparent": "00-0386b09e48390e4e8409216a3a8d0585-5e094b5d5fbb014d-00", + "traceparent": "00-bf5cdae2e7f54a43b3aeb3e42d9c2a78-fce849a18828f24c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "890ba43bad9d8bc6db7ea8d0f34ce722", "x-ms-return-client-request-id": "true" @@ -68,26 +70,28 @@ "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", - "@odata.etag": "\u00220x8D7F31DD891D15D\u0022" + "@odata.etag": "\u00220x8D81999CBE57DE1\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "890ba43b-ad9d-8bc6-db7e-a8d0f34ce722", "Content-Length": "223", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "18", - "ETag": "W/\u00220x8D7F31DD8A29D42\u0022", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "66", + "ETag": "W/\u00220x8D81999CBFE3A81\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "890ba43b-ad9d-8bc6-db7e-a8d0f34ce722", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "890ba43b-ad9d-8bc6-db7e-a8d0f34ce722" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31DD8A29D42\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999CBFE3A81\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -95,19 +99,19 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "118", "Content-Type": "application/json", - "If-Match": "\u00220x8D7F31DD891D15D\u0022", + "If-Match": "\u00220x8D81999CBE57DE1\u0022", "Prefer": "return=representation", - "traceparent": "00-ced9f0aa3eac4240b2704950b5c318f2-37011c8c414bad40-00", + "traceparent": "00-66b0da1478ad8b40bc4b03e3b09e734f-74946d90c7a8024f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d6d9fa27c35a394621cb45794f7a1697", "x-ms-return-client-request-id": "true" @@ -116,22 +120,24 @@ "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", - "@odata.etag": "\u00220x8D7F31DD891D15D\u0022" + "@odata.etag": "\u00220x8D81999CBE57DE1\u0022" }, "StatusCode": 412, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "d6d9fa27-c35a-3946-21cb-45794f7a1697", "Content-Language": "en", "Content-Length": "160", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d6d9fa27-c35a-3946-21cb-45794f7a1697", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d6d9fa27-c35a-3946-21cb-45794f7a1697" }, "ResponseBody": { "error": { @@ -141,15 +147,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-bd170f1bfaeb374c95de533a204be1c9-1851e50bf2d67d48-00", + "traceparent": "00-bf2befabec3a8d489013bc49d5084206-6df579d3673be74c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9a86040cbd479da90fe80c9f661deeda", "x-ms-return-client-request-id": "true" @@ -158,19 +164,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "9a86040c-bd47-9da9-0fe8-0c9f661deeda", "Content-Length": "126", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "90", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9a86040c-bd47-9da9-0fe8-0c9f661deeda", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9a86040c-bd47-9da9-0fe8-0c9f661deeda" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps(name)", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps(name)", "value": [ { "name": "vsluedsr" @@ -179,15 +187,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-b73c7fea1d03894097fda00aab1d51e5-9eb902130641cf48-00", + "traceparent": "00-a69c70361bdd444eb47c9f0de23781e7-0210c09926436746-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b7a0fcf00c9278065ed268d2674c3c60", "x-ms-return-client-request-id": "true" @@ -196,21 +204,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "b7a0fcf0-0c92-7806-5ed2-68d2674c3c60", "Content-Length": "223", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "6", - "ETag": "W/\u00220x8D7F31DD8A29D42\u0022", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "20", + "ETag": "W/\u00220x8D81999CBFE3A81\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b7a0fcf0-0c92-7806-5ed2-68d2674c3c60", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b7a0fcf0-0c92-7806-5ed2-68d2674c3c60" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31DD8A29D42\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999CBFE3A81\u0022", "name": "vsluedsr", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -218,16 +228,16 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027vsluedsr\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D7F31DD8A29D42\u0022", - "traceparent": "00-1e6c604e2aecca47bf9c93723c66b1d8-e3fc0738ddfb2d4d-00", + "If-Match": "\u00220x8D81999CBFE3A81\u0022", + "traceparent": "00-ab6462c4fb348e449747133597b4eea6-937bb9abb259a244-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "efc311684dc569da513cc771b7a7d304", "x-ms-return-client-request-id": "true" @@ -236,20 +246,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:03:00 GMT", - "elapsed-time": "10", + "client-request-id": "efc31168-4dc5-69da-513c-c771b7a7d304", + "Date": "Fri, 26 Jun 2020 06:26:01 GMT", + "elapsed-time": "33", "Expires": "-1", "Pragma": "no-cache", "request-id": "efc31168-4dc5-69da-513c-c771b7a7d304", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "efc31168-4dc5-69da-513c-c771b7a7d304" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1266633341", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMapsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMapsAsync.json index e82a15f26c4e..ee73cf442231 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMapsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/CrudSynonymMapsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "69", "Content-Type": "application/json", - "traceparent": "00-7d6912ada1a58b4aac5a6d2d9c43335f-d835ed9fb306f541-00", + "traceparent": "00-082b1eaf2bb9b94693e3f8b6e1bc4d55-4c204f23113b114e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c02069d540fd192627e03b9f134bed62", "x-ms-return-client-request-id": "true" @@ -24,22 +24,24 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c02069d5-40fd-1926-27e0-3b9f134bed62", "Content-Length": "220", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "20", - "ETag": "W/\u00220x8D7F31E07B4FF4F\u0022", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "151", + "ETag": "W/\u00220x8D81999E0A97827\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c02069d5-40fd-1926-27e0-3b9f134bed62", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c02069d5-40fd-1926-27e0-3b9f134bed62" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31E07B4FF4F\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999E0A97827\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "msft=\u003EMicrosoft", @@ -47,19 +49,19 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "118", "Content-Type": "application/json", - "If-Match": "\u00220x8D7F31E07B4FF4F\u0022", + "If-Match": "\u00220x8D81999E0A97827\u0022", "Prefer": "return=representation", - "traceparent": "00-d6a2479e7bb18b45bab678775bccedff-a5708ae4dd7ab44d-00", + "traceparent": "00-a7d1532d40dfe94b9c6f2256b7ee2f71-3be3e69284ef264a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0b9c28133e0e9e04f52c78921f0b1fc4", "x-ms-return-client-request-id": "true" @@ -68,26 +70,28 @@ "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", - "@odata.etag": "\u00220x8D7F31E07B4FF4F\u0022" + "@odata.etag": "\u00220x8D81999E0A97827\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0b9c2813-3e0e-9e04-f52c-78921f0b1fc4", "Content-Length": "223", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "19", - "ETag": "W/\u00220x8D7F31E07BE4FCA\u0022", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "22", + "ETag": "W/\u00220x8D81999E0BAE076\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0b9c2813-3e0e-9e04-f52c-78921f0b1fc4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0b9c2813-3e0e-9e04-f52c-78921f0b1fc4" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31E07BE4FCA\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999E0BAE076\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -95,19 +99,19 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "118", "Content-Type": "application/json", - "If-Match": "\u00220x8D7F31E07B4FF4F\u0022", + "If-Match": "\u00220x8D81999E0A97827\u0022", "Prefer": "return=representation", - "traceparent": "00-1407448a177ec84d84a8d527ac1e50d1-82045627a852484a-00", + "traceparent": "00-f16289a880bf3247b20e6c24eec76648-88a68b8e0f97504c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "36a22e1a3354ac4d565b1f8fdf1033d3", "x-ms-return-client-request-id": "true" @@ -116,22 +120,24 @@ "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", - "@odata.etag": "\u00220x8D7F31E07B4FF4F\u0022" + "@odata.etag": "\u00220x8D81999E0A97827\u0022" }, "StatusCode": 412, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "36a22e1a-3354-ac4d-565b-1f8fdf1033d3", "Content-Language": "en", "Content-Length": "160", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "29", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "71", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "36a22e1a-3354-ac4d-565b-1f8fdf1033d3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "36a22e1a-3354-ac4d-565b-1f8fdf1033d3" }, "ResponseBody": { "error": { @@ -141,15 +147,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-3f4aefe15db8d34f87fed6d26bdff039-a2ee0371545f5841-00", + "traceparent": "00-bb5f987f976bfc4a9ec718cbad15a081-d2b4d50f7f917644-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5043667597c197906482cad0c793f91b", "x-ms-return-client-request-id": "true" @@ -158,19 +164,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "50436675-97c1-9790-6482-cad0c793f91b", "Content-Length": "126", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "50436675-97c1-9790-6482-cad0c793f91b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "50436675-97c1-9790-6482-cad0c793f91b" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps(name)", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps(name)", "value": [ { "name": "byaqwdpt" @@ -179,15 +187,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-511d329689eeb34e92a631329a8e2581-3b26da6b52c7944b-00", + "traceparent": "00-0af13b8f78a6a042acc740af49ee63c1-bf29434cb1fe5e44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e58477c0b6a8df0ddbf0b5b31e74bee5", "x-ms-return-client-request-id": "true" @@ -196,21 +204,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e58477c0-b6a8-df0d-dbf0-b5b31e74bee5", "Content-Length": "223", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "6", - "ETag": "W/\u00220x8D7F31E07BE4FCA\u0022", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "8", + "ETag": "W/\u00220x8D81999E0BAE076\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e58477c0-b6a8-df0d-dbf0-b5b31e74bee5", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e58477c0-b6a8-df0d-dbf0-b5b31e74bee5" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#synonymmaps/$entity", - "@odata.etag": "\u00220x8D7F31E07BE4FCA\u0022", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#synonymmaps/$entity", + "@odata.etag": "\u00220x8D81999E0BAE076\u0022", "name": "byaqwdpt", "format": "solr", "synonyms": "ms,msft=\u003EMicrosoft", @@ -218,16 +228,16 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/synonymmaps(\u0027byaqwdpt\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D7F31E07BE4FCA\u0022", - "traceparent": "00-84ebcecb4c192c409f613205a61243a2-22fb83f66f45894d-00", + "If-Match": "\u00220x8D81999E0BAE076\u0022", + "traceparent": "00-6aa7fe855ac8584b9fe56a8ebec52dd4-7759c7c4618f7e4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b81ca4f9cfc882029d0bd1d2687ce4c3", "x-ms-return-client-request-id": "true" @@ -236,20 +246,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:04:19 GMT", - "elapsed-time": "28", + "client-request-id": "b81ca4f9-cfc8-8202-9d0b-d1d2687ce4c3", + "Date": "Fri, 26 Jun 2020 06:26:36 GMT", + "elapsed-time": "188", "Expires": "-1", "Pragma": "no-cache", "request-id": "b81ca4f9-cfc8-8202-9d0b-d1d2687ce4c3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b81ca4f9-cfc8-8202-9d0b-d1d2687ce4c3" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "43964750", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndex.json index ea36fd156b26..3eed8b0d060a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndex.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rcrcuyyi\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mgbdeiqg\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-9db1deb195bcd646a8ec96155b87f999-14b688e7f2cf7b4c-00", + "traceparent": "00-0be49979fda0af46b2e8bf90c78c2203-c434aa2e25d70f4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7b47ca4dbdfaf4d11dfd7df45a34096b", "x-ms-return-client-request-id": "true" @@ -18,22 +18,24 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6162", + "client-request-id": "7b47ca4d-bdfa-f4d1-1dfd-7df45a34096b", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:23 GMT", - "elapsed-time": "59", - "ETag": "W/\u00220x8D7F31DD93D998A\u0022", + "Date": "Fri, 26 Jun 2020 06:26:25 GMT", + "elapsed-time": "26", + "ETag": "W/\u00220x8D81999CCC642BD\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "7b47ca4d-bdfa-f4d1-1dfd-7df45a34096b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "7b47ca4d-bdfa-f4d1-1dfd-7df45a34096b" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7F31DD93D998A\u0022", - "name": "rcrcuyyi", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D81999CCC642BD\u0022", + "name": "mgbdeiqg", "defaultScoringProfile": null, "fields": [ { @@ -423,19 +425,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rcrcuyyi\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mgbdeiqg\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-8330dbe1455b284981a0a8e00f055d40-7431cc001930d845-00", + "traceparent": "00-eebb9d18cb1d084ab40a4a227fc097cf-1a8dd450777ea74b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "15b88db1fcf0c9e0caab98d491df36f3", "x-ms-return-client-request-id": "true" @@ -444,20 +450,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:03:23 GMT", - "elapsed-time": "239", + "client-request-id": "15b88db1-fcf0-c9e0-caab-98d491df36f3", + "Date": "Fri, 26 Jun 2020 06:26:25 GMT", + "elapsed-time": "205", "Expires": "-1", "Pragma": "no-cache", "request-id": "15b88db1-fcf0-c9e0-caab-98d491df36f3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "15b88db1-fcf0-c9e0-caab-98d491df36f3" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "436223391", - "SearchIndexName": "rcrcuyyi", + "SearchIndexName": "mgbdeiqg", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexAsync.json index 8f3e7f7b9ae7..d66c7526e5a4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phhlkena\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ipbeegtj\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-81fabbb268719646bd21424e6cb709f1-db4f9ea3a8ed0b4a-00", + "traceparent": "00-203587c75cd2024a9a7245c01bdce346-6104a5da2061c448-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "94327a2c77d31fee9f75b5eab600bb4c", "x-ms-return-client-request-id": "true" @@ -18,22 +18,24 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6162", + "client-request-id": "94327a2c-77d3-1fee-9f75-b5eab600bb4c", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:42 GMT", - "elapsed-time": "44", - "ETag": "W/\u00220x8D7F31E08314A6A\u0022", + "Date": "Fri, 26 Jun 2020 06:26:59 GMT", + "elapsed-time": "28", + "ETag": "W/\u00220x8D81999E16F3649\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "94327a2c-77d3-1fee-9f75-b5eab600bb4c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "94327a2c-77d3-1fee-9f75-b5eab600bb4c" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D7F31E08314A6A\u0022", - "name": "phhlkena", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", + "@odata.etag": "\u00220x8D81999E16F3649\u0022", + "name": "ipbeegtj", "defaultScoringProfile": null, "fields": [ { @@ -423,19 +425,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phhlkena\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ipbeegtj\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7e3d95eb291d1e42877af05bf3d92c91-bcf103ad9b48804e-00", + "traceparent": "00-dbb0d4b8d6f5ad41b3f4b4a7d197bace-e8e0de51d0bcfc45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3745fe0db607234e2dfcad90fda52b74", "x-ms-return-client-request-id": "true" @@ -444,20 +450,22 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:04:42 GMT", - "elapsed-time": "201", + "client-request-id": "3745fe0d-b607-234e-2dfc-ad90fda52b74", + "Date": "Fri, 26 Jun 2020 06:26:59 GMT", + "elapsed-time": "205", "Expires": "-1", "Pragma": "no-cache", "request-id": "3745fe0d-b607-234e-2dfc-ad90fda52b74", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3745fe0d-b607-234e-2dfc-ad90fda52b74" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "256342603", - "SearchIndexName": "phhlkena", + "SearchIndexName": "ipbeegtj", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexes.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexes.json index ed21874b85bf..4324691d6272 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexes.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexes.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?$select=%2A\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e88bbfcc516ee73040fb1420e7a9ee12", "x-ms-return-client-request-id": "true" @@ -17,180 +17,25 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8555", + "client-request-id": "e88bbfcc-516e-e730-40fb-1420e7a9ee12", + "Content-Length": "8697", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:24 GMT", - "elapsed-time": "68", + "Date": "Fri, 26 Jun 2020 06:26:27 GMT", + "elapsed-time": "163", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e88bbfcc-516e-e730-40fb-1420e7a9ee12", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e88bbfcc-516e-e730-40fb-1420e7a9ee12" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes(*)", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes(*)", "value": [ { - "@odata.etag": "\u00220x8D7F31DA513EDAE\u0022", - "name": "wldfvoaj", - "defaultScoringProfile": null, - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "en.lucene", - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "address", - "type": "Edm.ComplexType", - "fields": [ - { - "name": "streetAddress", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "city", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "stateProvince", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "country", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "postalCode", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ] - } - ], - "scoringProfiles": [], - "corsOptions": null, - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName", - "description" - ] - } - ], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "encryptionKey": null, - "similarity": null - }, - { - "@odata.etag": "\u00220x8D7F31AC250461B\u0022", - "name": "yrehvsfy", + "@odata.etag": "\u00220x8D819958B16A66E\u0022", + "name": "josgoidr", "defaultScoringProfile": null, "fields": [ { @@ -580,7 +425,172 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } + }, + { + "@odata.etag": "\u00220x8D81999BA166E18\u0022", + "name": "wldfvoaj", + "defaultScoringProfile": null, + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "en.lucene", + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "address", + "type": "Edm.ComplexType", + "fields": [ + { + "name": "streetAddress", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "city", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "stateProvince", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "country", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "postalCode", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ] + } + ], + "scoringProfiles": [], + "corsOptions": null, + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName", + "description" + ] + } + ], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "encryptionKey": null, + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } ] } @@ -588,8 +598,8 @@ ], "Variables": { "RandomSeed": "230027432", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesAsync.json index f8324dc22445..639880168009 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes?$select=%2A\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?$select=%2A\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "df603cdb3a3b95a3bc0ad41634fa28f0", "x-ms-return-client-request-id": "true" @@ -17,180 +17,25 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8555", + "client-request-id": "df603cdb-3a3b-95a3-bc0a-d41634fa28f0", + "Content-Length": "8697", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:42 GMT", - "elapsed-time": "52", + "Date": "Fri, 26 Jun 2020 06:27:02 GMT", + "elapsed-time": "233", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "df603cdb-3a3b-95a3-bc0a-d41634fa28f0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "df603cdb-3a3b-95a3-bc0a-d41634fa28f0" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#indexes(*)", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes(*)", "value": [ { - "@odata.etag": "\u00220x8D7F31DA513EDAE\u0022", - "name": "wldfvoaj", - "defaultScoringProfile": null, - "fields": [ - { - "name": "hotelId", - "type": "Edm.String", - "searchable": false, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": true, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "hotelName", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "description", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": "en.lucene", - "synonymMaps": [] - }, - { - "name": "tags", - "type": "Collection(Edm.String)", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": false, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "address", - "type": "Edm.ComplexType", - "fields": [ - { - "name": "streetAddress", - "type": "Edm.String", - "searchable": true, - "filterable": false, - "retrievable": true, - "sortable": false, - "facetable": false, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "city", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "stateProvince", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "country", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - }, - { - "name": "postalCode", - "type": "Edm.String", - "searchable": true, - "filterable": true, - "retrievable": true, - "sortable": true, - "facetable": true, - "key": false, - "indexAnalyzer": null, - "searchAnalyzer": null, - "analyzer": null, - "synonymMaps": [] - } - ] - } - ], - "scoringProfiles": [], - "corsOptions": null, - "suggesters": [ - { - "name": "sg", - "searchMode": "analyzingInfixMatching", - "sourceFields": [ - "hotelName", - "description" - ] - } - ], - "analyzers": [], - "tokenizers": [], - "tokenFilters": [], - "charFilters": [], - "encryptionKey": null, - "similarity": null - }, - { - "@odata.etag": "\u00220x8D7F31AC250461B\u0022", - "name": "yrehvsfy", + "@odata.etag": "\u00220x8D819958B16A66E\u0022", + "name": "josgoidr", "defaultScoringProfile": null, "fields": [ { @@ -580,7 +425,172 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } + }, + { + "@odata.etag": "\u00220x8D81999BA166E18\u0022", + "name": "wldfvoaj", + "defaultScoringProfile": null, + "fields": [ + { + "name": "hotelId", + "type": "Edm.String", + "searchable": false, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": true, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "hotelName", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "description", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": "en.lucene", + "synonymMaps": [] + }, + { + "name": "tags", + "type": "Collection(Edm.String)", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": false, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "address", + "type": "Edm.ComplexType", + "fields": [ + { + "name": "streetAddress", + "type": "Edm.String", + "searchable": true, + "filterable": false, + "retrievable": true, + "sortable": false, + "facetable": false, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "city", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "stateProvince", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "country", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + }, + { + "name": "postalCode", + "type": "Edm.String", + "searchable": true, + "filterable": true, + "retrievable": true, + "sortable": true, + "facetable": true, + "key": false, + "indexAnalyzer": null, + "searchAnalyzer": null, + "analyzer": null, + "synonymMaps": [] + } + ] + } + ], + "scoringProfiles": [], + "corsOptions": null, + "suggesters": [ + { + "name": "sg", + "searchMode": "analyzingInfixMatching", + "sourceFields": [ + "hotelName", + "description" + ] + } + ], + "analyzers": [], + "tokenizers": [], + "tokenFilters": [], + "charFilters": [], + "encryptionKey": null, + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } ] } @@ -588,8 +598,8 @@ ], "Variables": { "RandomSeed": "347410179", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesNextPageThrowsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesNextPageThrowsAsync.json index 5dc83cd4d7c9..c40430aae864 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesNextPageThrowsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetIndexesNextPageThrowsAsync.json @@ -2,8 +2,8 @@ "Entries": [], "Variables": { "RandomSeed": "1502897414", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatistics.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatistics.json index 2f9980fca48f..58556f01e00b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatistics.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatistics.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a778dd79df70b44e8d9b08a2abaab2ae-3e7264ca448cd542-00", + "traceparent": "00-a189148f88cf6c4c9e87f644c7fda260-eb3424789940f44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "352f4c5b46c6db9183c2d78ad0a51379", "x-ms-return-client-request-id": "true" @@ -18,19 +18,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "352f4c5b-46c6-db91-83c2-d78ad0a51379", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:03:24 GMT", - "elapsed-time": "45", + "Date": "Fri, 26 Jun 2020 06:26:27 GMT", + "elapsed-time": "163", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "352f4c5b-46c6-db91-83c2-d78ad0a51379", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "352f4c5b-46c6-db91-83c2-d78ad0a51379" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -41,24 +43,20 @@ "quota": 3 }, "indexersCount": { - "usage": 1, + "usage": 0, "quota": 3 }, "dataSourcesCount": { - "usage": 1, + "usage": 0, "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37093, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -72,8 +70,8 @@ ], "Variables": { "RandomSeed": "1735959094", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatisticsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatisticsAsync.json index e77ec77ed297..e469e2a4dbf7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatisticsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/GetServiceStatisticsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/servicestats?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/servicestats?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-d040b71a3cd78743adca459a08ecfbff-547f821e30d0824c-00", + "traceparent": "00-2e3c1328ddc50b4cb490fb5f68a8e523-6c162c238ec29f44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c8229c16880f099da1539c8a7c7acb40", "x-ms-return-client-request-id": "true" @@ -18,19 +18,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "590", + "client-request-id": "c8229c16-880f-099d-a153-9c8a7c7acb40", + "Content-Length": "544", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 08 May 2020 07:04:42 GMT", - "elapsed-time": "80", + "Date": "Fri, 26 Jun 2020 06:27:02 GMT", + "elapsed-time": "256", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c8229c16-880f-099d-a153-9c8a7c7acb40", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c8229c16-880f-099d-a153-9c8a7c7acb40" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsearch2.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.ServiceStatistics", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics", "counters": { "documentCount": { "usage": 10, @@ -41,24 +43,20 @@ "quota": 3 }, "indexersCount": { - "usage": 2, + "usage": 0, "quota": 3 }, "dataSourcesCount": { - "usage": 2, + "usage": 0, "quota": 3 }, "storageSize": { - "usage": 35876, + "usage": 37142, "quota": 52428800 }, "synonymMaps": { "usage": 0, "quota": 3 - }, - "skillsetCount": { - "usage": 0, - "quota": 3 } }, "limits": { @@ -72,8 +70,8 @@ ], "Variables": { "RandomSeed": "1636339797", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipeline.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipeline.json index dec81b5940ff..d26653df354b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipeline.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipeline.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", + "traceparent": "00-72febc3e2cfd4644af63104e8d7ec85f-db346e635c46fd4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bb0245badfc1f18ca36d44f127534217", "x-ms-return-client-request-id": "true" @@ -17,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bb0245ba-dfc1-f18c-a36d-44f127534217", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:03:24 GMT", - "elapsed-time": "38", + "Date": "Fri, 26 Jun 2020 06:26:27 GMT", + "elapsed-time": "45", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bb0245ba-dfc1-f18c-a36d-44f127534217", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bb0245ba-dfc1-f18c-a36d-44f127534217" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "1344081635", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipelineAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipelineAsync.json index b93af49377b2..9afd45d6de29 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipelineAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/IndexSharesPipelineAsync.json @@ -1,14 +1,15 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", + "traceparent": "00-ced8cd5d4a1865499bd5b1d453ae9eaa-630612471dab3e4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "444a30982e06b9fae60e267a690b207f", "x-ms-return-client-request-id": "true" @@ -17,24 +18,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "444a3098-2e06-b9fa-e60e-267a690b207f", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Fri, 08 May 2020 07:04:42 GMT", - "elapsed-time": "39", + "Date": "Fri, 26 Jun 2020 06:27:02 GMT", + "elapsed-time": "41", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "444a3098-2e06-b9fa-e60e-267a690b207f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "444a3098-2e06-b9fa-e60e-267a690b207f" }, "ResponseBody": "\uFEFF10" } ], "Variables": { "RandomSeed": "551039053", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_ADMIN_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndex.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndex.json index c1a8b9831398..881fc302d057 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndex.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndex.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-19d98fb555532243bb05abb41589c33d-749f801a4ab12c4b-00", + "traceparent": "00-9e77f404e552b34ca155730cc725d7c9-868b838e0fddc64e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "26f7066d315f5ab3f827c83cbd605a50", "x-ms-return-client-request-id": "true" @@ -308,13 +308,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "26f7066d-315f-5ab3-f827-c83cbd605a50", - "Content-Length": "6162", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:12:37 GMT", - "elapsed-time": "3371", - "ETag": "W/\u00220x8D8079E42686F6C\u0022", + "Date": "Fri, 26 Jun 2020 06:26:29 GMT", + "elapsed-time": "767", + "ETag": "W/\u00220x8D81999DC6EB2B9\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -324,7 +324,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D8079E42686F6C\u0022", + "@odata.etag": "\u00220x8D81999DC6EB2B9\u0022", "name": "ptbgbued", "defaultScoringProfile": null, "fields": [ @@ -715,23 +715,27 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?allowIndexDowntime=true\u0026api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "4465", + "Content-Length": "4535", "Content-Type": "application/json", - "If-Match": "\u00220x8D8079E42686F6C\u0022", + "If-Match": "\u00220x8D81999DC6EB2B9\u0022", "Prefer": "return=representation", - "traceparent": "00-19650928b8423149b4ecf7e79897a4f3-0c2925762cdabf43-00", + "traceparent": "00-211b7b41e9f7f74d98b81f75a505a509-ee29399a5149a145-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5c92b4cdda72b9dbb6ec10cb1f481d99", "x-ms-return-client-request-id": "true" @@ -1048,17 +1052,20 @@ "name": "asciiTags" } ], - "@odata.etag": "\u00220x8D8079E42686F6C\u0022" + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity" + }, + "@odata.etag": "\u00220x8D81999DC6EB2B9\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "5c92b4cd-da72-b9db-b6ec-10cb1f481d99", - "Content-Length": "6581", + "Content-Length": "6652", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:12:42 GMT", - "elapsed-time": "5005", - "ETag": "W/\u00220x8D8079E4575D162\u0022", + "Date": "Fri, 26 Jun 2020 06:26:30 GMT", + "elapsed-time": "1114", + "ETag": "W/\u00220x8D81999DD24682C\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1069,7 +1076,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D8079E4575D162\u0022", + "@odata.etag": "\u00220x8D81999DD24682C\u0022", "name": "ptbgbued", "defaultScoringProfile": null, "fields": [ @@ -1487,19 +1494,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ptbgbued\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-9c66277609542a4dac0fff14087ec0dd-1f0609b8d0c2a940-00", + "traceparent": "00-98a3398f3f51f7428208f77d03325188-8b2961996e57d143-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bcb37215e67e50e3b4d10c4369758711", "x-ms-return-client-request-id": "true" @@ -1509,8 +1520,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "bcb37215-e67e-50e3-b4d1-0c4369758711", - "Date": "Wed, 03 Jun 2020 09:12:42 GMT", - "elapsed-time": "526", + "Date": "Fri, 26 Jun 2020 06:26:30 GMT", + "elapsed-time": "234", "Expires": "-1", "Pragma": "no-cache", "request-id": "bcb37215-e67e-50e3-b4d1-0c4369758711", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndexAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndexAsync.json index 9aa45ceb2319..4cc6836b4f35 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndexAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexClientTests/UpdateIndexAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "4032", "Content-Type": "application/json", - "traceparent": "00-fc6bd5003e2abb44b9921fe44f36e733-a2c57f1336eb144a-00", + "traceparent": "00-c7a499577eaa944aafcfeeb20b4b3a82-648762f31fd2114e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "62e943843b5a3dfda55d7936ea8d46fa", "x-ms-return-client-request-id": "true" @@ -308,13 +308,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "62e94384-3b5a-3dfd-a55d-7936ea8d46fa", - "Content-Length": "6162", + "Content-Length": "6233", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:12:46 GMT", - "elapsed-time": "1052", - "ETag": "W/\u00220x8D8079E47C2737E\u0022", + "Date": "Fri, 26 Jun 2020 06:27:03 GMT", + "elapsed-time": "761", + "ETag": "W/\u00220x8D81999F1203357\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -324,7 +324,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D8079E47C2737E\u0022", + "@odata.etag": "\u00220x8D81999F1203357\u0022", "name": "mvqfigik", "defaultScoringProfile": null, "fields": [ @@ -715,23 +715,27 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?allowIndexDowntime=true\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?allowIndexDowntime=true\u0026api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "4465", + "Content-Length": "4535", "Content-Type": "application/json", - "If-Match": "\u00220x8D8079E47C2737E\u0022", + "If-Match": "\u00220x8D81999F1203357\u0022", "Prefer": "return=representation", - "traceparent": "00-c7c5c8f6512ca04299cb8fa452e57fb9-38da7be64c930242-00", + "traceparent": "00-e0a18e027573574887dba8d409fe1f48-2a56772a2425ce4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b20370b178072cf624850527937d7829", "x-ms-return-client-request-id": "true" @@ -1048,17 +1052,20 @@ "name": "asciiTags" } ], - "@odata.etag": "\u00220x8D8079E47C2737E\u0022" + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity" + }, + "@odata.etag": "\u00220x8D81999F1203357\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "b20370b1-7807-2cf6-2485-0527937d7829", - "Content-Length": "6581", + "Content-Length": "6652", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:12:48 GMT", - "elapsed-time": "3424", - "ETag": "W/\u00220x8D8079E49D9C7D9\u0022", + "Date": "Fri, 26 Jun 2020 06:27:03 GMT", + "elapsed-time": "691", + "ETag": "W/\u00220x8D81999F194DC50\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1069,7 +1076,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexes/$entity", - "@odata.etag": "\u00220x8D8079E49D9C7D9\u0022", + "@odata.etag": "\u00220x8D81999F194DC50\u0022", "name": "mvqfigik", "defaultScoringProfile": null, "fields": [ @@ -1487,19 +1494,23 @@ "tokenFilters": [], "charFilters": [], "encryptionKey": null, - "similarity": null + "similarity": { + "@odata.type": "#Microsoft.Azure.Search.BM25Similarity", + "k1": null, + "b": null + } } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mvqfigik\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7735de25416b5f43bb4ec2b101bfcc24-ef606e1d78dd5f4f-00", + "traceparent": "00-84c09203947bad45a584d087caf5465d-13167b6a95e53048-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2f006d0b543d6ef41f058a4a0d2e28c5", "x-ms-return-client-request-id": "true" @@ -1509,8 +1520,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2f006d0b-543d-6ef4-1f05-8a4a0d2e28c5", - "Date": "Wed, 03 Jun 2020 09:12:50 GMT", - "elapsed-time": "712", + "Date": "Fri, 26 Jun 2020 06:27:03 GMT", + "elapsed-time": "197", "Expires": "-1", "Pragma": "no-cache", "request-id": "2f006d0b-543d-6ef4-1f05-8a4a0d2e28c5", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexer.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexer.json index cb84568a245c..14026b4daf19 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexer.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexer.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "216", + "Content-Length": "219", "Content-Type": "application/json", - "traceparent": "00-811853813260b94abbd669bff8614a35-89d2688721bc8847-00", + "traceparent": "00-ad482f3db683be41873ce3977de17a65-d54969cce727b643-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "486ad25254309070c8083a9e1cef25f0", "x-ms-return-client-request-id": "true" @@ -20,23 +20,23 @@ "name": "frgsqbma", "type": "azureblob", "credentials": { - "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchtststg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "gonnfoex" + "name": "edqxdvgm" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "486ad252-5430-9070-c808-3a9e1cef25f0", - "Content-Length": "360", + "Content-Length": "381", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:16 GMT", - "elapsed-time": "50", - "ETag": "W/\u00220x8D8079E59DAB1A7\u0022", + "Date": "Fri, 26 Jun 2020 06:27:28 GMT", + "elapsed-time": "68", + "ETag": "W/\u00220x8D81999FF9F2F70\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027frgsqbma\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027frgsqbma\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -46,7 +46,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D8079E59DAB1A7\u0022", + "@odata.etag": "\u00220x8D81999FF9F2F70\u0022", "name": "frgsqbma", "description": null, "type": "azureblob", @@ -55,25 +55,26 @@ "connectionString": null }, "container": { - "name": "gonnfoex", + "name": "edqxdvgm", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-342878ce106921498df83cad93a87f63-3c9de6c8b7eac84e-00", + "traceparent": "00-dc679813566eea49ae1859a60dca16b9-34245a3855d8f447-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2170341e0943733f7c962833f7f456dc", "x-ms-return-client-request-id": "true" @@ -81,19 +82,19 @@ "RequestBody": { "name": "mqmuncer", "dataSourceName": "frgsqbma", - "targetIndexName": "oaqoatsp" + "targetIndexName": "wyfoqjwi" }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2170341e-0943-733f-7c96-2833f7f456dc", - "Content-Length": "354", + "Content-Length": "362", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:18 GMT", - "elapsed-time": "1546", - "ETag": "W/\u00220x8D8079E5AAED6F2\u0022", + "Date": "Fri, 26 Jun 2020 06:27:36 GMT", + "elapsed-time": "8360", + "ETag": "W/\u00220x8D8199A048F0DF1\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -103,34 +104,34 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D8079E5AAED6F2\u0022", + "@odata.etag": "\u00220x8D8199A048F0DF1\u0022", "name": "mqmuncer", "description": null, "dataSourceName": "frgsqbma", "skillsetName": null, - "targetIndexName": "oaqoatsp", + "targetIndexName": "wyfoqjwi", "disabled": null, "schedule": null, "parameters": null, "fieldMappings": [], "outputFieldMappings": [], - "cache": null + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "158", "Content-Type": "application/json", - "If-Match": "\u00220x8D8079E5AAED6F2\u0022", + "If-Match": "\u00220x8D8199A048F0DF1\u0022", "Prefer": "return=representation", - "traceparent": "00-6e4a056a0d9ab44792ea228e19c8c721-362abdf4f8dce542-00", + "traceparent": "00-18ca0d8f6cc1214b8d96283b4a51c35a-91f25f12383fdf46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7b39b864f7ddc6f90db95c5e460013d7", "x-ms-return-client-request-id": "true" @@ -139,18 +140,18 @@ "name": "mqmuncer", "description": "Updated description", "dataSourceName": "frgsqbma", - "targetIndexName": "oaqoatsp", - "@odata.etag": "\u00220x8D8079E5AAED6F2\u0022" + "targetIndexName": "wyfoqjwi", + "@odata.etag": "\u00220x8D8199A048F0DF1\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "7b39b864-f7dd-c6f9-0db9-5c5e460013d7", - "Content-Length": "371", + "Content-Length": "379", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:18 GMT", - "elapsed-time": "170", - "ETag": "W/\u00220x8D8079E5AF73C3B\u0022", + "Date": "Fri, 26 Jun 2020 06:27:36 GMT", + "elapsed-time": "195", + "ETag": "W/\u00220x8D8199A04C4A6A1\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,30 +162,30 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D8079E5AF73C3B\u0022", + "@odata.etag": "\u00220x8D8199A04C4A6A1\u0022", "name": "mqmuncer", "description": "Updated description", "dataSourceName": "frgsqbma", "skillsetName": null, - "targetIndexName": "oaqoatsp", + "targetIndexName": "wyfoqjwi", "disabled": null, "schedule": null, "parameters": null, "fieldMappings": [], "outputFieldMappings": [], - "cache": null + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.status?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-e01fea8f1aa5f64597b03756c9a94b41-23d928204e8e3842-00", + "traceparent": "00-98b04a26e57145408b69f790b30e34dc-de7e3fac8c1c5d4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fb2af2e94ee4be4cc8c62185c6f1f893", "x-ms-return-client-request-id": "true" @@ -194,10 +195,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "fb2af2e9-4ee4-be4c-c8c6-2185c6f1f893", - "Content-Length": "1521", + "Content-Length": "1507", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:28 GMT", - "elapsed-time": "13", + "Date": "Fri, 26 Jun 2020 06:27:46 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -207,18 +208,18 @@ "x-ms-client-request-id": "fb2af2e9-4ee4-be4c-c8c6-2185c6f1f893" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo", "name": "mqmuncer", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:13:21.864Z", - "endTime": "2020-06-03T09:13:23.489Z", + "startTime": "2020-06-26T06:27:37.685Z", + "endTime": "2020-06-26T06:27:46.02Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:21.864Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:27:37.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -227,12 +228,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:13:21.864Z", - "endTime": "2020-06-03T09:13:23.489Z", + "startTime": "2020-06-26T06:27:37.685Z", + "endTime": "2020-06-26T06:27:46.02Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:21.864Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:27:37.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -246,15 +247,15 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.run?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.run?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-3c43f90207ceb24aa83b53a6ce0c9447-265a052f74549b4d-00", + "traceparent": "00-b41f5f24da6d574b81a0eaf3362657fe-9117e9e03b979d47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "228a0aea6d41269a3ba91489ade12c7c", "x-ms-return-client-request-id": "true" @@ -265,8 +266,8 @@ "Cache-Control": "no-cache", "client-request-id": "228a0aea-6d41-269a-3ba9-1489ade12c7c", "Content-Length": "0", - "Date": "Wed, 03 Jun 2020 09:13:28 GMT", - "elapsed-time": "39", + "Date": "Fri, 26 Jun 2020 06:27:46 GMT", + "elapsed-time": "66", "Expires": "-1", "Pragma": "no-cache", "request-id": "228a0aea-6d41-269a-3ba9-1489ade12c7c", @@ -276,15 +277,15 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.status?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-fb0e35afbbab6444a510638ec1bfae7b-49545e7b7efc6d4d-00", + "traceparent": "00-315946b2906f9d43b48aae893914f8a5-8fbdb1c303c1554e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "044a51835bca15f86c7ab316d674ff1c", "x-ms-return-client-request-id": "true" @@ -294,10 +295,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "044a5183-5bca-15f8-6c7a-b316d674ff1c", - "Content-Length": "1325", + "Content-Length": "2115", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:38 GMT", - "elapsed-time": "13", + "Date": "Fri, 26 Jun 2020 06:27:56 GMT", + "elapsed-time": "55", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -307,88 +308,18 @@ "x-ms-client-request-id": "044a5183-5bca-15f8-6c7a-b316d674ff1c" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", - "name": "mqmuncer", - "status": "running", - "lastResult": { - "status": "inProgress", - "errorMessage": null, - "startTime": "2020-06-03T09:13:31.917Z", - "endTime": null, - "itemsProcessed": 0, - "itemsFailed": 0, - "initialTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", - "finalTrackingState": null, - "errors": [], - "warnings": [], - "metrics": null - }, - "executionHistory": [ - { - "status": "success", - "errorMessage": null, - "startTime": "2020-06-03T09:13:21.864Z", - "endTime": "2020-06-03T09:13:23.489Z", - "itemsProcessed": 10, - "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:21.864Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", - "errors": [], - "warnings": [], - "metrics": null - } - ], - "limits": { - "maxRunTime": "PT2M", - "maxDocumentExtractionSize": 16777216, - "maxDocumentContentCharactersToExtract": 32768 - } - } - }, - { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027mqmuncer\u0027)/search.status?api-version=2019-05-06-Preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json; odata.metadata=minimal", - "api-key": "Sanitized", - "traceparent": "00-7a2322640627a64198959a62f982c4ad-4c79a1975409ed49-00", - "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3b74c8c0f0767c965803bf3a3ac310e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "client-request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7", - "Content-Length": "2126", - "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:13:48 GMT", - "elapsed-time": "13", - "Expires": "-1", - "OData-Version": "4.0", - "Pragma": "no-cache", - "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "x-ms-client-request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7" - }, - "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo", "name": "mqmuncer", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:13:31.933Z", - "endTime": "2020-06-03T09:13:42.442Z", + "startTime": "2020-06-26T06:27:47.707Z", + "endTime": "2020-06-26T06:27:48.285Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-03T09:12:51.864Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:31.933Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:01.9332554\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:01.9332554\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-26T06:27:07.685Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:27:47.723Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:27:17.7232339\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:27:17.7232339\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -397,12 +328,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:13:31.933Z", - "endTime": "2020-06-03T09:13:42.442Z", + "startTime": "2020-06-26T06:27:47.707Z", + "endTime": "2020-06-26T06:27:48.285Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-03T09:12:51.864Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:31.933Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:01.9332554\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:01.9332554\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-26T06:27:07.685Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:27:47.723Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:27:17.7232339\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:27:17.7232339\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -410,12 +341,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:13:21.864Z", - "endTime": "2020-06-03T09:13:23.489Z", + "startTime": "2020-06-26T06:27:37.685Z", + "endTime": "2020-06-26T06:27:46.02Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:13:21.864Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:12:51.8642266\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:27:37.685Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:27:07.685159\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -429,75 +360,75 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027oaqoatsp\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wyfoqjwi\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-3aacaabb6cd5364e858cd9bc8f79f590-6f1d9bb5d0e63b4b-00", + "traceparent": "00-8087da229c96b74e85a21772ae9dd81f-5453da1cded0c44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "7501a599f4a68ec81274b6c6ba8350c7", + "x-ms-client-request-id": "3b74c8c0f0767c965803bf3a3ac310e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7", + "client-request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Wed, 03 Jun 2020 09:13:48 GMT", - "elapsed-time": "52", + "Date": "Fri, 26 Jun 2020 06:27:56 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", - "request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7", + "request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "x-ms-client-request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7" + "x-ms-client-request-id": "3b74c8c0-f076-7c96-5803-bf3a3ac310e7" }, "ResponseBody": "\uFEFF10" }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027oaqoatsp\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027wyfoqjwi\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-5b4b0d067249f540a9e0004fb7466810-8b1745fd6f815a4f-00", + "traceparent": "00-b6a1c086d3121743b4e267648a699423-9f04ea1c8ff6c247-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "e5c9f8aaf16d9205baceacc79bbddba9", + "x-ms-client-request-id": "7501a599f4a68ec81274b6c6ba8350c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e5c9f8aa-f16d-9205-bace-acc79bbddba9", - "Date": "Wed, 03 Jun 2020 09:13:49 GMT", - "elapsed-time": "837", + "client-request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7", + "Date": "Fri, 26 Jun 2020 06:27:57 GMT", + "elapsed-time": "304", "Expires": "-1", "Pragma": "no-cache", - "request-id": "e5c9f8aa-f16d-9205-bace-acc79bbddba9", + "request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "x-ms-client-request-id": "e5c9f8aa-f16d-9205-bace-acc79bbddba9" + "x-ms-client-request-id": "7501a599-f4a6-8ec8-1274-b6c6ba8350c7" }, "ResponseBody": [] } ], "Variables": { - "BlobContainerName": "gonnfoex", + "BlobContainerName": "edqxdvgm", "RandomSeed": "1401021797", - "SearchIndexName": "oaqoatsp", + "SearchIndexName": "wyfoqjwi", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", - "SEARCH_STORAGE_NAME": "heathsrchstg" + "SEARCH_STORAGE_NAME": "heathsrchtststg" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexerAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexerAsync.json index 3bf573c09154..5c6473504cea 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexerAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CreateAzureBlobIndexerAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "Content-Length": "216", + "Content-Length": "219", "Content-Type": "application/json", - "traceparent": "00-399e13a8ca2489439f45566e05363359-c7c62b2da6bacb49-00", + "traceparent": "00-a80c17cc4155c544808a9d2a359f3e3d-251601facc195a4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6d41977614fabfa0e581cdfe6ec10adf", "x-ms-return-client-request-id": "true" @@ -20,23 +20,23 @@ "name": "tnufhitt", "type": "azureblob", "credentials": { - "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchstg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchtststg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "awshfspy" + "name": "tijrshtg" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "6d419776-14fa-bfa0-e581-cdfe6ec10adf", - "Content-Length": "360", + "Content-Length": "381", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:14:14 GMT", - "elapsed-time": "47", - "ETag": "W/\u00220x8D8079E7CB95558\u0022", + "Date": "Fri, 26 Jun 2020 06:29:08 GMT", + "elapsed-time": "66", + "ETag": "W/\u00220x8D8199A3BA1AE6C\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tnufhitt\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tnufhitt\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -46,7 +46,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D8079E7CB95558\u0022", + "@odata.etag": "\u00220x8D8199A3BA1AE6C\u0022", "name": "tnufhitt", "description": null, "type": "azureblob", @@ -55,25 +55,26 @@ "connectionString": null }, "container": { - "name": "awshfspy", + "name": "tijrshtg", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-d32791adbcb9324483e19fdc2ff8dc44-356fa9f4bd151942-00", + "traceparent": "00-f511e47ad2441349a34e469f20d95a93-0cc2005aa4380549-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3ee4de424fcff29c8e30f4957851a581", "x-ms-return-client-request-id": "true" @@ -81,19 +82,19 @@ "RequestBody": { "name": "hoxoyjdj", "dataSourceName": "tnufhitt", - "targetIndexName": "pcdmcoxv" + "targetIndexName": "jnelmfiq" }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "3ee4de42-4fcf-f29c-8e30-f4957851a581", - "Content-Length": "354", + "Content-Length": "362", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:14:15 GMT", - "elapsed-time": "178", - "ETag": "W/\u00220x8D8079E7CD3E8AC\u0022", + "Date": "Fri, 26 Jun 2020 06:29:08 GMT", + "elapsed-time": "194", + "ETag": "W/\u00220x8D8199A3BB672AF\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -103,34 +104,34 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D8079E7CD3E8AC\u0022", + "@odata.etag": "\u00220x8D8199A3BB672AF\u0022", "name": "hoxoyjdj", "description": null, "dataSourceName": "tnufhitt", "skillsetName": null, - "targetIndexName": "pcdmcoxv", + "targetIndexName": "jnelmfiq", "disabled": null, "schedule": null, "parameters": null, "fieldMappings": [], "outputFieldMappings": [], - "cache": null + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "158", "Content-Type": "application/json", - "If-Match": "\u00220x8D8079E7CD3E8AC\u0022", + "If-Match": "\u00220x8D8199A3BB672AF\u0022", "Prefer": "return=representation", - "traceparent": "00-2df215ca3d4a5543af48b09a0d4c7fff-f845b23d9e56aa44-00", + "traceparent": "00-74c55fe9d1be9c46a529681dfd9097d8-7eff331c8ef78943-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "586dc1430e6f715c3948eb4695f8a235", "x-ms-return-client-request-id": "true" @@ -139,18 +140,18 @@ "name": "hoxoyjdj", "description": "Updated description", "dataSourceName": "tnufhitt", - "targetIndexName": "pcdmcoxv", - "@odata.etag": "\u00220x8D8079E7CD3E8AC\u0022" + "targetIndexName": "jnelmfiq", + "@odata.etag": "\u00220x8D8199A3BB672AF\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "586dc143-0e6f-715c-3948-eb4695f8a235", - "Content-Length": "371", + "Content-Length": "379", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:14:15 GMT", - "elapsed-time": "103", - "ETag": "W/\u00220x8D8079E7CF1D838\u0022", + "Date": "Fri, 26 Jun 2020 06:29:08 GMT", + "elapsed-time": "188", + "ETag": "W/\u00220x8D8199A3BF13C75\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,30 +162,30 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#indexers/$entity", - "@odata.etag": "\u00220x8D8079E7CF1D838\u0022", + "@odata.etag": "\u00220x8D8199A3BF13C75\u0022", "name": "hoxoyjdj", "description": "Updated description", "dataSourceName": "tnufhitt", "skillsetName": null, - "targetIndexName": "pcdmcoxv", + "targetIndexName": "jnelmfiq", "disabled": null, "schedule": null, "parameters": null, "fieldMappings": [], "outputFieldMappings": [], - "cache": null + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.status?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c14b6771c667164c820832e09ab2bfc4-095154b9cb98194d-00", + "traceparent": "00-6405add202782e44bb8bf5b032dde572-63012ec6a343394d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1c2b7f4b613095efe5db703ecd7567b7", "x-ms-return-client-request-id": "true" @@ -194,10 +195,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "1c2b7f4b-6130-95ef-e5db-703ecd7567b7", - "Content-Length": "1521", + "Content-Length": "1503", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:14:24 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 06:29:19 GMT", + "elapsed-time": "80", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -207,18 +208,18 @@ "x-ms-client-request-id": "1c2b7f4b-6130-95ef-e5db-703ecd7567b7" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo", "name": "hoxoyjdj", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:14:17.834Z", - "endTime": "2020-06-03T09:14:18.334Z", + "startTime": "2020-06-26T06:29:11.1Z", + "endTime": "2020-06-26T06:29:12.85Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:14:17.834Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:29:11.1Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -227,12 +228,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:14:17.834Z", - "endTime": "2020-06-03T09:14:18.334Z", + "startTime": "2020-06-26T06:29:11.1Z", + "endTime": "2020-06-26T06:29:12.85Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:14:17.834Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:29:11.1Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -246,15 +247,15 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.run?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.run?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-6b63ea3c75485247a8a33081d5b426e8-8ac6f1d296e1a54b-00", + "traceparent": "00-4c2be14334599d4fadeb91c0f0abadac-6fd66cbe6482ab4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3780faa3f2d233518172058763555c95", "x-ms-return-client-request-id": "true" @@ -265,8 +266,8 @@ "Cache-Control": "no-cache", "client-request-id": "3780faa3-f2d2-3351-8172-058763555c95", "Content-Length": "0", - "Date": "Wed, 03 Jun 2020 09:14:24 GMT", - "elapsed-time": "46", + "Date": "Fri, 26 Jun 2020 06:29:19 GMT", + "elapsed-time": "124", "Expires": "-1", "Pragma": "no-cache", "request-id": "3780faa3-f2d2-3351-8172-058763555c95", @@ -276,15 +277,15 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.status?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexers(\u0027hoxoyjdj\u0027)/search.status?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-cfae884a1179044a87dd2859f50f7e72-42a3b0c31d819049-00", + "traceparent": "00-c1927d380fa6814f810e1312312caa24-89c40d7fb20edd45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f849be8d8926e150d1d873949d1ea4c4", "x-ms-return-client-request-id": "true" @@ -294,10 +295,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "f849be8d-8926-e150-d1d8-73949d1ea4c4", - "Content-Length": "2126", + "Content-Length": "2109", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Wed, 03 Jun 2020 09:14:35 GMT", - "elapsed-time": "27", + "Date": "Fri, 26 Jun 2020 06:29:29 GMT", + "elapsed-time": "77", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -307,18 +308,18 @@ "x-ms-client-request-id": "f849be8d-8926-e150-d1d8-73949d1ea4c4" }, "ResponseBody": { - "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2019_05_06_Preview.IndexerExecutionInfo", + "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo", "name": "hoxoyjdj", "status": "running", "lastResult": { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:14:27.917Z", - "endTime": "2020-06-03T09:14:28.417Z", + "startTime": "2020-06-26T06:29:21.225Z", + "endTime": "2020-06-26T06:29:21.553Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-03T09:13:47.834Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:14:27.917Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:57.9176737\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:57.9176737\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-26T06:28:41.1Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:29:21.225Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:28:51.2256641\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:28:51.2256641\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -327,12 +328,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:14:27.917Z", - "endTime": "2020-06-03T09:14:28.417Z", + "startTime": "2020-06-26T06:29:21.225Z", + "endTime": "2020-06-26T06:29:21.553Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-03T09:13:47.834Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:14:27.917Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:57.9176737\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:57.9176737\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00222020-06-26T06:28:41.1Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:29:21.225Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:28:51.2256641\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:28:51.2256641\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -340,12 +341,12 @@ { "status": "success", "errorMessage": null, - "startTime": "2020-06-03T09:14:17.834Z", - "endTime": "2020-06-03T09:14:18.334Z", + "startTime": "2020-06-26T06:29:11.1Z", + "endTime": "2020-06-26T06:29:12.85Z", "itemsProcessed": 10, "itemsFailed": 0, - "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-03T09:14:17.834Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", - "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-03T09:13:47.8345111\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", + "initialTrackingState": "{\r\n \u0022lastFullEnumerationStartTime\u0022: \u00220001-01-01T00:00:00Z\u0022,\r\n \u0022lastAttemptedEnumerationStartTime\u0022: \u00222020-06-26T06:29:11.1Z\u0022,\r\n \u0022nameHighWaterMark\u0022: null\r\n}", + "finalTrackingState": "{\u0022LastFullEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022LastAttemptedEnumerationStartTime\u0022:\u00222020-06-26T06:28:41.1006572\u002B00:00\u0022,\u0022NameHighWaterMark\u0022:null}", "errors": [], "warnings": [], "metrics": null @@ -359,15 +360,15 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pcdmcoxv\u0027)/docs/$count?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jnelmfiq\u0027)/docs/$count?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", - "traceparent": "00-f34bbcfd2e14324e801481a9f4bbfca9-45d98859fb3a8f46-00", + "traceparent": "00-373cbf8883f9234caa3b4e27f20eb7be-3f1fb5541e3fbf4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9aa334e06a7759632ef79abe5c68318f", "x-ms-return-client-request-id": "true" @@ -379,8 +380,8 @@ "client-request-id": "9aa334e0-6a77-5963-2ef7-9abe5c68318f", "Content-Length": "5", "Content-Type": "text/plain", - "Date": "Wed, 03 Jun 2020 09:14:35 GMT", - "elapsed-time": "109", + "Date": "Fri, 26 Jun 2020 06:29:29 GMT", + "elapsed-time": "81", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -392,15 +393,15 @@ "ResponseBody": "\uFEFF10" }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027pcdmcoxv\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jnelmfiq\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-01fda8b5c15ded478663040a209429f4-d685c584a0e1644c-00", + "traceparent": "00-5eb3a70e57b6fd419157cea35037468f-97b1a55d4bb57643-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200603.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0fb0da7e6e2b1a91a99e66fa7ebc9563", "x-ms-return-client-request-id": "true" @@ -410,8 +411,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "0fb0da7e-6e2b-1a91-a99e-66fa7ebc9563", - "Date": "Wed, 03 Jun 2020 09:14:36 GMT", - "elapsed-time": "760", + "Date": "Fri, 26 Jun 2020 06:29:29 GMT", + "elapsed-time": "183", "Expires": "-1", "Pragma": "no-cache", "request-id": "0fb0da7e-6e2b-1a91-a99e-66fa7ebc9563", @@ -422,12 +423,12 @@ } ], "Variables": { - "BlobContainerName": "awshfspy", + "BlobContainerName": "tijrshtg", "RandomSeed": "939854059", - "SearchIndexName": "pcdmcoxv", + "SearchIndexName": "jnelmfiq", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", - "SEARCH_STORAGE_NAME": "heathsrchstg" + "SEARCH_STORAGE_NAME": "heathsrchtststg" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnection.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnection.json index fc449cfe0298..730849c33bd5 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnection.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnection.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "219", "Content-Type": "application/json", - "traceparent": "00-c7adced47485014da560e49e3a346187-aab42b25ec93f64d-00", + "traceparent": "00-b37d21be111f2d4d8946352579177ff8-5b384767e7c2a44b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5e7ee7eca6f238500027f653e2704c9f", @@ -23,20 +23,20 @@ "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchtststg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "pnvxmjhn" + "name": "fxqpoxde" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "5e7ee7ec-a6f2-3850-0027-f653e2704c9f", - "Content-Length": "360", + "Content-Length": "381", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:11:37 GMT", - "elapsed-time": "45", - "ETag": "W/\u00220x8D813EDB75EBEDA\u0022", + "Date": "Fri, 26 Jun 2020 06:28:20 GMT", + "elapsed-time": "117", + "ETag": "W/\u00220x8D8199A1F021414\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -46,7 +46,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDB75EBEDA\u0022", + "@odata.etag": "\u00220x8D8199A1F021414\u0022", "name": "tulnjsnj", "description": null, "type": "azureblob", @@ -55,26 +55,27 @@ "connectionString": null }, "container": { - "name": "pnvxmjhn", + "name": "fxqpoxde", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "211", "Content-Type": "application/json", - "If-Match": "\u00220x8D813EDB75EBEDA\u0022", + "If-Match": "\u00220x8D8199A1F021414\u0022", "Prefer": "return=representation", - "traceparent": "00-38046b81b7347b4393598bc39814dd1d-a5b1ce1852d43947-00", + "traceparent": "00-56c22f12d0e0bf4b8721e9e5f1c1e575-636521c35a6a5b45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8332b1fa8fe7b0044936592b8a7f8137", @@ -88,19 +89,19 @@ "connectionString": "\u003Cunchanged\u003E" }, "container": { - "name": "pnvxmjhn" + "name": "fxqpoxde" }, - "@odata.etag": "\u00220x8D813EDB75EBEDA\u0022" + "@odata.etag": "\u00220x8D8199A1F021414\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "8332b1fa-8fe7-b004-4936-592b8a7f8137", - "Content-Length": "377", + "Content-Length": "398", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:11:37 GMT", - "elapsed-time": "55", - "ETag": "W/\u00220x8D813EDB77FE36C\u0022", + "Date": "Fri, 26 Jun 2020 06:28:20 GMT", + "elapsed-time": "109", + "ETag": "W/\u00220x8D8199A1F264484\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -111,7 +112,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDB77FE36C\u0022", + "@odata.etag": "\u00220x8D8199A1F264484\u0022", "name": "tulnjsnj", "description": "Updated description", "type": "azureblob", @@ -120,22 +121,23 @@ "connectionString": null }, "container": { - "name": "pnvxmjhn", + "name": "fxqpoxde", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a29ccbea4021184b9ebafae662d1e557-dbbb1015609c764b-00", + "traceparent": "00-8b3f4467c2e1a348867a315ed3091760-8087d0e81929b542-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "66949e9c82d62129b75c64057a15f751", @@ -146,11 +148,11 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "66949e9c-82d6-2129-b75c-64057a15f751", - "Content-Length": "377", + "Content-Length": "398", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:11:37 GMT", - "elapsed-time": "34", - "ETag": "W/\u00220x8D813EDB77FE36C\u0022", + "Date": "Fri, 26 Jun 2020 06:28:20 GMT", + "elapsed-time": "13", + "ETag": "W/\u00220x8D8199A1F264484\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,7 +163,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDB77FE36C\u0022", + "@odata.etag": "\u00220x8D8199A1F264484\u0022", "name": "tulnjsnj", "description": "Updated description", "type": "azureblob", @@ -170,23 +172,24 @@ "connectionString": null }, "container": { - "name": "pnvxmjhn", + "name": "fxqpoxde", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027tulnjsnj\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D813EDB77FE36C\u0022", - "traceparent": "00-bc75d8d30f0b5b4bbb0a56e980172c21-6f46e9b56421a145-00", + "If-Match": "\u00220x8D8199A1F264484\u0022", + "traceparent": "00-3556cab8ff3a024492a9866828adca7c-8c4f9cb1e52c7742-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e8c78d2c676a5ca1e3cd14bc4d24ae80", @@ -197,8 +200,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "e8c78d2c-676a-5ca1-e3cd-14bc4d24ae80", - "Date": "Fri, 19 Jun 2020 01:11:37 GMT", - "elapsed-time": "16", + "Date": "Fri, 26 Jun 2020 06:28:20 GMT", + "elapsed-time": "49", "Expires": "-1", "Pragma": "no-cache", "request-id": "e8c78d2c-676a-5ca1-e3cd-14bc4d24ae80", @@ -208,14 +211,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-460898113c4b034b95470ed7aeaa42a4-2d2bf58e22866449-00", + "traceparent": "00-9a61d1b808fa5b478d1bb76765ce5839-95af7535f11ff849-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "44b6bea6e6dc77c88810cc8b2aff3634", @@ -226,10 +229,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "44b6bea6-e6dc-77c8-8810-cc8b2aff3634", - "Content-Length": "107", + "Content-Length": "126", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:11:37 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:28:20 GMT", + "elapsed-time": "12", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -240,18 +243,22 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources(name)", - "value": [] + "value": [ + { + "name": "frgsqbma" + } + ] } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027jsjpeosq\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027assnbfev\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-2f4a1ca78e6c2a4c87575ba67808a28c-4b7e48e3bd29a345-00", + "traceparent": "00-9a2ed3f619658b45aa99cf6f2c51c94f-ddc1000e95fdbc4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fcfe073f98b834ccfd3883096d6dd392", @@ -262,8 +269,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "fcfe073f-98b8-34cc-fd38-83096d6dd392", - "Date": "Fri, 19 Jun 2020 01:11:38 GMT", - "elapsed-time": "484", + "Date": "Fri, 26 Jun 2020 06:28:21 GMT", + "elapsed-time": "194", "Expires": "-1", "Pragma": "no-cache", "request-id": "fcfe073f-98b8-34cc-fd38-83096d6dd392", @@ -274,9 +281,9 @@ } ], "Variables": { - "BlobContainerName": "pnvxmjhn", + "BlobContainerName": "fxqpoxde", "RandomSeed": "12959464", - "SearchIndexName": "jsjpeosq", + "SearchIndexName": "assnbfev", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnectionAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnectionAsync.json index 60e64058b738..5e7d9d79902e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnectionAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudDataSourceConnectionAsync.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "219", "Content-Type": "application/json", - "traceparent": "00-672341aa7aa35c45a8eaa52688550e3d-904586384ebcf04c-00", + "traceparent": "00-ae8126bd4fe6fa448a134a7a84889c23-fe8b2ff2c9f0cb46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "45e763d39deafea1a5a4ccec7f3f06c3", @@ -23,20 +23,20 @@ "connectionString": "DefaultEndpointsProtocol=https;AccountName=heathsrchtststg;AccountKey=Sanitized;EndpointSuffix=core.windows.net" }, "container": { - "name": "hpykuivp" + "name": "dpeiheem" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "45e763d3-9dea-fea1-a5a4-ccec7f3f06c3", - "Content-Length": "360", + "Content-Length": "381", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:12:01 GMT", - "elapsed-time": "40", - "ETag": "W/\u00220x8D813EDC5EE0740\u0022", + "Date": "Fri, 26 Jun 2020 06:29:52 GMT", + "elapsed-time": "89", + "ETag": "W/\u00220x8D8199A560B3D03\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -46,7 +46,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDC5EE0740\u0022", + "@odata.etag": "\u00220x8D8199A560B3D03\u0022", "name": "xvdofdnf", "description": null, "type": "azureblob", @@ -55,26 +55,27 @@ "connectionString": null }, "container": { - "name": "hpykuivp", + "name": "dpeiheem", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "211", "Content-Type": "application/json", - "If-Match": "\u00220x8D813EDC5EE0740\u0022", + "If-Match": "\u00220x8D8199A560B3D03\u0022", "Prefer": "return=representation", - "traceparent": "00-762c88f29547af4197269f7cd6badd0f-dd0c34e064ffe141-00", + "traceparent": "00-5f4ff78a86b94b4398697429350bf6a8-bd7374db60e0994c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c0a01c3f803ad839c42bf0de391b99d7", @@ -88,19 +89,19 @@ "connectionString": "\u003Cunchanged\u003E" }, "container": { - "name": "hpykuivp" + "name": "dpeiheem" }, - "@odata.etag": "\u00220x8D813EDC5EE0740\u0022" + "@odata.etag": "\u00220x8D8199A560B3D03\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "c0a01c3f-803a-d839-c42b-f0de391b99d7", - "Content-Length": "377", + "Content-Length": "398", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:12:01 GMT", - "elapsed-time": "31", - "ETag": "W/\u00220x8D813EDC5F73138\u0022", + "Date": "Fri, 26 Jun 2020 06:29:52 GMT", + "elapsed-time": "55", + "ETag": "W/\u00220x8D8199A561A0CC7\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -111,7 +112,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDC5F73138\u0022", + "@odata.etag": "\u00220x8D8199A561A0CC7\u0022", "name": "xvdofdnf", "description": "Updated description", "type": "azureblob", @@ -120,22 +121,23 @@ "connectionString": null }, "container": { - "name": "hpykuivp", + "name": "dpeiheem", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-4b01f30bee3ebf4b8605441659913598-5d26004bd51ccc4c-00", + "traceparent": "00-ef619fff40d39442b8c97a733366ce0a-d67ac5b066c11046-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2b8a5705b6c9028dd5edee19f105dca8", @@ -146,11 +148,11 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "2b8a5705-b6c9-028d-d5ed-ee19f105dca8", - "Content-Length": "377", + "Content-Length": "398", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:12:01 GMT", - "elapsed-time": "24", - "ETag": "W/\u00220x8D813EDC5F73138\u0022", + "Date": "Fri, 26 Jun 2020 06:29:52 GMT", + "elapsed-time": "28", + "ETag": "W/\u00220x8D8199A561A0CC7\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -161,7 +163,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources/$entity", - "@odata.etag": "\u00220x8D813EDC5F73138\u0022", + "@odata.etag": "\u00220x8D8199A561A0CC7\u0022", "name": "xvdofdnf", "description": "Updated description", "type": "azureblob", @@ -170,23 +172,24 @@ "connectionString": null }, "container": { - "name": "hpykuivp", + "name": "dpeiheem", "query": null }, "dataChangeDetectionPolicy": null, - "dataDeletionDetectionPolicy": null + "dataDeletionDetectionPolicy": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources(\u0027xvdofdnf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D813EDC5F73138\u0022", - "traceparent": "00-52a47d1f173adc489f4338b260d2e5bd-3d938fd6f21e8a4f-00", + "If-Match": "\u00220x8D8199A561A0CC7\u0022", + "traceparent": "00-bb1aa967b90ac44d8b25848019810a63-af6abbf76fbfd94b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "429ee39026a252332a0e81bfacc3c589", @@ -197,8 +200,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "429ee390-26a2-5233-2a0e-81bfacc3c589", - "Date": "Fri, 19 Jun 2020 01:12:01 GMT", - "elapsed-time": "18", + "Date": "Fri, 26 Jun 2020 06:29:52 GMT", + "elapsed-time": "89", "Expires": "-1", "Pragma": "no-cache", "request-id": "429ee390-26a2-5233-2a0e-81bfacc3c589", @@ -208,14 +211,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/datasources?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-55d17ff24063214a95276ea433b439bf-b465529536fa8c4e-00", + "traceparent": "00-84446e4051502147b8edd7986df78bfa-158ba7c5f6159d4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "28e6f40adbb588fa8f9dea4c921fe7bf", @@ -226,10 +229,10 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "28e6f40a-dbb5-88fa-8f9d-ea4c921fe7bf", - "Content-Length": "107", + "Content-Length": "146", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:12:01 GMT", - "elapsed-time": "42", + "Date": "Fri, 26 Jun 2020 06:29:53 GMT", + "elapsed-time": "24", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -240,18 +243,25 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#datasources(name)", - "value": [] + "value": [ + { + "name": "frgsqbma" + }, + { + "name": "tnufhitt" + } + ] } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027igxfdaqh\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027algselbr\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-f29a6253de548c4993b8cad944edc0b1-804e0f9b88e62a40-00", + "traceparent": "00-dbe986199e916e45ad9c94116eb1c598-a669cd240b83f245-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "554e484f577cdf34243701bb35cd5512", @@ -262,8 +272,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "554e484f-577c-df34-2437-01bb35cd5512", - "Date": "Fri, 19 Jun 2020 01:12:02 GMT", - "elapsed-time": "412", + "Date": "Fri, 26 Jun 2020 06:29:53 GMT", + "elapsed-time": "207", "Expires": "-1", "Pragma": "no-cache", "request-id": "554e484f-577c-df34-2437-01bb35cd5512", @@ -274,9 +284,9 @@ } ], "Variables": { - "BlobContainerName": "hpykuivp", + "BlobContainerName": "dpeiheem", "RandomSeed": "1095428452", - "SearchIndexName": "igxfdaqh", + "SearchIndexName": "algselbr", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillset.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillset.json index a33724796f4f..9eeb926bc7e2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillset.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillset.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "2227", "Content-Type": "application/json", - "traceparent": "00-e614ce6ff2514947b6db20378030f068-00359f685f118c4b-00", + "traceparent": "00-80ea3c6aacad0e4eb3cbe039166bc6b7-e7e59e7b13d31b4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "719e8dac28fd9b3cfce9636118e05032", @@ -173,13 +173,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "719e8dac-28fd-9b3c-fce9-636118e05032", - "Content-Length": "3189", + "Content-Length": "3210", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:14:44 GMT", - "elapsed-time": "111", - "ETag": "W/\u00220x8D813EE266AFD29\u0022", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "209", + "ETag": "W/\u00220x8D8199A2D44231D\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -189,7 +189,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE266AFD29\u0022", + "@odata.etag": "\u00220x8D8199A2D44231D\u0022", "name": "qgrsmesk", "description": null, "skills": [ @@ -390,22 +390,23 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "2308", "Content-Type": "application/json", - "If-Match": "\u00220x8D813EE266AFD29\u0022", + "If-Match": "\u00220x8D8199A2D44231D\u0022", "Prefer": "return=representation", - "traceparent": "00-5bf1a32fb3865b4b8be805ece36a07d5-c4efe6146f9ea349-00", + "traceparent": "00-02f29bc7145dfe49bb666e575681c999-6aede81cecadf241-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "679371d6c884723bbe56b85c3c72fed0", @@ -564,17 +565,17 @@ "cognitiveServices": { "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices" }, - "@odata.etag": "\u00220x8D813EE266AFD29\u0022" + "@odata.etag": "\u00220x8D8199A2D44231D\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "679371d6-c884-723b-be56-b85c3c72fed0", - "Content-Length": "3205", + "Content-Length": "3226", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:14:44 GMT", - "elapsed-time": "70", - "ETag": "W/\u00220x8D813EE268EBA70\u0022", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "118", + "ETag": "W/\u00220x8D8199A2D66CC97\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -585,7 +586,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE268EBA70\u0022", + "@odata.etag": "\u00220x8D8199A2D66CC97\u0022", "name": "qgrsmesk", "description": "Update description", "skills": [ @@ -786,18 +787,19 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c5f9bd3902f1e74790dedefca91dde39-bfa70a34fa25f94a-00", + "traceparent": "00-7abe4a5edbcbe8409ba2a11fd7260d3d-93249589464ca245-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f1c57e6ece060e33a389385319a9f862", @@ -808,11 +810,11 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "f1c57e6e-ce06-0e33-a389-385319a9f862", - "Content-Length": "3205", + "Content-Length": "3226", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:14:44 GMT", - "elapsed-time": "31", - "ETag": "W/\u00220x8D813EE268EBA70\u0022", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "36", + "ETag": "W/\u00220x8D8199A2D66CC97\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -823,7 +825,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE268EBA70\u0022", + "@odata.etag": "\u00220x8D8199A2D66CC97\u0022", "name": "qgrsmesk", "description": "Update description", "skills": [ @@ -1024,19 +1026,20 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027qgrsmesk\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D813EE268EBA70\u0022", - "traceparent": "00-eaefa45e40fd3a46999eec667269b02d-eadbb8325f476d41-00", + "If-Match": "\u00220x8D8199A2D66CC97\u0022", + "traceparent": "00-ba55812023e1da48abde8e16fb84f7e1-59acc08b2908184d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0c24f8073ecce4ed512cb2a66fdf5e89", @@ -1047,8 +1050,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "0c24f807-3ecc-e4ed-512c-b2a66fdf5e89", - "Date": "Fri, 19 Jun 2020 01:14:44 GMT", - "elapsed-time": "34", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "49", "Expires": "-1", "Pragma": "no-cache", "request-id": "0c24f807-3ecc-e4ed-512c-b2a66fdf5e89", @@ -1058,14 +1061,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-a3768ddedf43f9458ed1cd5d6a965d7f-c6b32fd6f4c1ee49-00", + "traceparent": "00-d60cedb5f6a6b94fbd22fa93ad0ec1f1-d4156fe5b806534e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "99f292ea5f1b082c3e85c3fb90e85815", @@ -1078,8 +1081,8 @@ "client-request-id": "99f292ea-5f1b-082c-3e85-c3fb90e85815", "Content-Length": "105", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:14:44 GMT", - "elapsed-time": "19", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "30", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1094,14 +1097,14 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ogagrbye\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027rkrtlipc\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-dea09dafb244ab469f4c73fa4104589b-50456e9cba337c4a-00", + "traceparent": "00-57d6fb821259fa4d80dd8e392ddfddd6-7039063bcd8bf446-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4355565ef14e300491e09fda1b8c9ec4", @@ -1112,8 +1115,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "4355565e-f14e-3004-91e0-9fda1b8c9ec4", - "Date": "Fri, 19 Jun 2020 01:14:45 GMT", - "elapsed-time": "520", + "Date": "Fri, 26 Jun 2020 06:28:44 GMT", + "elapsed-time": "215", "Expires": "-1", "Pragma": "no-cache", "request-id": "4355565e-f14e-3004-91e0-9fda1b8c9ec4", @@ -1124,9 +1127,9 @@ } ], "Variables": { - "BlobContainerName": "sarjyjpu", + "BlobContainerName": "jrxarrdl", "RandomSeed": "1965957870", - "SearchIndexName": "ogagrbye", + "SearchIndexName": "rkrtlipc", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillsetAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillsetAsync.json index 16ba52c79b3e..974c8e83e9b5 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillsetAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchIndexerClientTests/CrudSkillsetAsync.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "2227", "Content-Type": "application/json", - "traceparent": "00-002ef2d6feb6bd4181ff1618ce02a1f0-dd544280e5dec541-00", + "traceparent": "00-933b119f436595469440f1e7c4481b38-b9c6e2b88dc87743-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "91f828ab2d56ae5c57999756b7fcb4db", @@ -173,13 +173,13 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "91f828ab-2d56-ae5c-5799-9756b7fcb4db", - "Content-Length": "3189", + "Content-Length": "3210", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "68", - "ETag": "W/\u00220x8D813EE34F05810\u0022", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "99", + "ETag": "W/\u00220x8D8199A64287F39\u0022", "Expires": "-1", - "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2019-05-06-Preview", + "Location": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2020-06-30", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", @@ -189,7 +189,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE34F05810\u0022", + "@odata.etag": "\u00220x8D8199A64287F39\u0022", "name": "xnonjilg", "description": null, "skills": [ @@ -390,22 +390,23 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2020-06-30", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", "Content-Length": "2308", "Content-Type": "application/json", - "If-Match": "\u00220x8D813EE34F05810\u0022", + "If-Match": "\u00220x8D8199A64287F39\u0022", "Prefer": "return=representation", - "traceparent": "00-3426b1beef42824180e22457b47d8f99-c82f69504ce0a044-00", + "traceparent": "00-fa099f81210432418018b94fa39df60a-373398ffb9a7d04f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9746e932544ebbfbf8418cb323ea1dc7", @@ -564,17 +565,17 @@ "cognitiveServices": { "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices" }, - "@odata.etag": "\u00220x8D813EE34F05810\u0022" + "@odata.etag": "\u00220x8D8199A64287F39\u0022" }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "9746e932-544e-bbfb-f841-8cb323ea1dc7", - "Content-Length": "3205", + "Content-Length": "3226", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "66", - "ETag": "W/\u00220x8D813EE35032152\u0022", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "88", + "ETag": "W/\u00220x8D8199A6449EFFE\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -585,7 +586,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE35032152\u0022", + "@odata.etag": "\u00220x8D8199A6449EFFE\u0022", "name": "xnonjilg", "description": "Update description", "skills": [ @@ -786,18 +787,19 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-b46f2a7af85eb44dab09e4f9dd588242-7e2ee2f498e09a49-00", + "traceparent": "00-d3c28f9c00bc3845b374fbb7a7a63863-7bfb4ea148724f49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5f83e1368d94d31822ee4ceaef9186d4", @@ -808,11 +810,11 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "5f83e136-8d94-d318-22ee-4ceaef9186d4", - "Content-Length": "3205", + "Content-Length": "3226", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "32", - "ETag": "W/\u00220x8D813EE35032152\u0022", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "30", + "ETag": "W/\u00220x8D8199A6449EFFE\u0022", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -823,7 +825,7 @@ }, "ResponseBody": { "@odata.context": "https://azs-net-heathsrchtst.search.windows.net/$metadata#skillsets/$entity", - "@odata.etag": "\u00220x8D813EE35032152\u0022", + "@odata.etag": "\u00220x8D8199A6449EFFE\u0022", "name": "xnonjilg", "description": "Update description", "skills": [ @@ -1024,19 +1026,20 @@ "@odata.type": "#Microsoft.Azure.Search.DefaultCognitiveServices", "description": null }, - "knowledgeStore": null + "knowledgeStore": null, + "encryptionKey": null } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets(\u0027xnonjilg\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "If-Match": "\u00220x8D813EE35032152\u0022", - "traceparent": "00-203039ce991a834ebfc3f936361fdf33-94f96a5a90e2ba41-00", + "If-Match": "\u00220x8D8199A6449EFFE\u0022", + "traceparent": "00-a812f84c651dad41b85b08152b145fdb-c1f99710295f9144-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7097e20602f6564b2d3c9814a1a98a6d", @@ -1047,8 +1050,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "7097e206-02f6-564b-2d3c-9814a1a98a6d", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "33", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "92", "Expires": "-1", "Pragma": "no-cache", "request-id": "7097e206-02f6-564b-2d3c-9814a1a98a6d", @@ -1058,14 +1061,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?$select=name\u0026api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/skillsets?$select=name\u0026api-version=2020-06-30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-c732763949edec44b2799a02425eff3f-a88a743a3b935648-00", + "traceparent": "00-5dc6da70ff87484fadc90a08201a36b7-804731525fc6214d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d51fd07b5579a547d07274600811cc67", @@ -1078,8 +1081,8 @@ "client-request-id": "d51fd07b-5579-a547-d072-74600811cc67", "Content-Length": "105", "Content-Type": "application/json; odata.metadata=minimal", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "17", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "20", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -1094,14 +1097,14 @@ } }, { - "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xhliluxl\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027tegatrrl\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7bb0be1579b22445aa444737dfdf62d1-f6aa38a760fb9e4f-00", + "traceparent": "00-8f16c606fe8d2e44afab755a6433fae0-f31215032d1f344b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200618.1", + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "41acb8baac5234d0962c3257f5043278", @@ -1112,8 +1115,8 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "client-request-id": "41acb8ba-ac52-34d0-962c-3257f5043278", - "Date": "Fri, 19 Jun 2020 01:15:08 GMT", - "elapsed-time": "472", + "Date": "Fri, 26 Jun 2020 06:30:16 GMT", + "elapsed-time": "200", "Expires": "-1", "Pragma": "no-cache", "request-id": "41acb8ba-ac52-34d0-962c-3257f5043278", @@ -1124,9 +1127,9 @@ } ], "Variables": { - "BlobContainerName": "smojslyk", + "BlobContainerName": "baycywjc", "RandomSeed": "1971078882", - "SearchIndexName": "xhliluxl", + "SearchIndexName": "tegatrrl", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst", "SEARCH_STORAGE_KEY": "Sanitized", diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocuments.json index df6bddce0c64..ed28f598cbdd 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocuments.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wjgrgesi.search.windows.net/indexes(\u0027jneesvvp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wjgrgesi.search.windows.net/indexes(\u0027jneesvvp\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -378,4 +378,4 @@ "SearchIndexName": "jneesvvp", "SearchServiceName": "azs-net-wjgrgesi" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocumentsAsync.json index fbb77ab2a491..4326178b9d97 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/BasicDynamicDocumentsAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-wjgrgesi.search.windows.net/indexes(\u0027jneesvvp\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-wjgrgesi.search.windows.net/indexes(\u0027jneesvvp\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -378,4 +378,4 @@ "SearchIndexName": "jneesvvp", "SearchServiceName": "azs-net-wjgrgesi" } -} \ 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 6903ab3931e0..33c0dc766e31 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-fe80b9c4d850ee4e90b71219c460ebbc-5ae94f0698efda44-00", + "traceparent": "00-8eb2df88a7553f4eb24160ac5daaaebc-da364a857f125940-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bfb788a4eaf0a5b00eee64847b2cf472", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bfb788a4-eaf0-a5b0-0eee-64847b2cf472", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:08 GMT", - "elapsed-time": "164", + "Date": "Fri, 26 Jun 2020 06:30:42 GMT", + "elapsed-time": "94", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bfb788a4-eaf0-a5b0-0eee-64847b2cf472", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bfb788a4-eaf0-a5b0-0eee-64847b2cf472" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-6d8e4e1eedc7db4eb0018271ee784627-829c5364bd36fd40-00", + "traceparent": "00-f5551606f7b3b64d9789b954b4933b3e-0d623901c945b849-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8a50fa21d4e96bea3c39e70c4d36020f", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "8a50fa21-d4e9-6bea-3c39-e70c4d36020f", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:11 GMT", - "elapsed-time": "121", + "Date": "Fri, 26 Jun 2020 06:30:45 GMT", + "elapsed-time": "138", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "8a50fa21-d4e9-6bea-3c39-e70c4d36020f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "8a50fa21-d4e9-6bea-3c39-e70c4d36020f" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-d9b55cc5262e3b49b89d4481fa607f40-21830d47f890dc43-00", + "traceparent": "00-7c73f0efc1afe548876bc584a8a913e2-b93a9582c7345040-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0b170f8196009a5563028291b32b0dc5", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "0b170f81-9600-9a55-6302-8291b32b0dc5", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:14 GMT", - "elapsed-time": "79", + "Date": "Fri, 26 Jun 2020 06:30:47 GMT", + "elapsed-time": "89", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0b170f81-9600-9a55-6302-8291b32b0dc5", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0b170f81-9600-9a55-6302-8291b32b0dc5" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,21 +24044,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-aa1f00029276264f82f95acb4e116cd5-03139880c943e445-00", + "traceparent": "00-4230758e3a64884598b2fb73ea68c8bf-3453b244a6373749-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3aaab373eeb0cf879e4c82b602a358d7", "x-ms-return-client-request-id": "true" @@ -24069,16 +24075,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "3aaab373-eeb0-cf87-9e4c-82b602a358d7", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:14 GMT", - "elapsed-time": "64", + "Date": "Fri, 26 Jun 2020 06:30:47 GMT", + "elapsed-time": "63", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3aaab373-eeb0-cf87-9e4c-82b602a358d7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3aaab373-eeb0-cf87-9e4c-82b602a358d7" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28092,21 +28100,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-9f026aae8ed2774d9b5894e856f48a9b-d6d3d75870487245-00", + "traceparent": "00-b48a764854e4b6469fb98a05fe684bdb-557f1e8fcb61804e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6b0354ebe8158a72a5b526e75259b811", "x-ms-return-client-request-id": "true" @@ -28123,16 +28131,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "6b0354eb-e815-8a72-a5b5-26e75259b811", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:14 GMT", - "elapsed-time": "11", + "Date": "Fri, 26 Jun 2020 06:30:48 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6b0354eb-e815-8a72-a5b5-26e75259b811", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6b0354eb-e815-8a72-a5b5-26e75259b811" }, "ResponseBody": { "value": [ @@ -28144,15 +28154,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027guwtyceg\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027xryglkgx\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-68ebef30bd2d5d4384242371c1b5abc5-3129ff673747ed44-00", + "traceparent": "00-d9a4825da171004e9d2260cd7412e7e6-1cd22f426bccea4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9999212cc78c925f88476db4149e97bf", "x-ms-return-client-request-id": "true" @@ -28161,21 +28171,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:05:14 GMT", - "elapsed-time": "253", + "client-request-id": "9999212c-c78c-925f-8847-6db4149e97bf", + "Date": "Fri, 26 Jun 2020 06:30:48 GMT", + "elapsed-time": "215", "Expires": "-1", "Pragma": "no-cache", "request-id": "9999212c-c78c-925f-8847-6db4149e97bf", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9999212c-c78c-925f-8847-6db4149e97bf" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "465025482", - "SearchIndexName": "guwtyceg", + "SearchIndexName": "xryglkgx", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c5510701f671..39d10465d050 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueDynamicAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-0744cb1aa6459e4dbe23172798dbbf72-9f2c148b13213245-00", + "traceparent": "00-25586ab45dd28d46a3d2b92c248fdb04-1ea0a4b9944aba45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "125fbebe1274e1744f1543c8bb2c0e4e", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "125fbebe-1274-e174-4f15-43c8bb2c0e4e", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:57 GMT", - "elapsed-time": "213", + "Date": "Fri, 26 Jun 2020 06:33:46 GMT", + "elapsed-time": "109", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "125fbebe-1274-e174-4f15-43c8bb2c0e4e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "125fbebe-1274-e174-4f15-43c8bb2c0e4e" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-c023539b3b0a314498e54374ba8dceca-3b54b1f097990e46-00", + "traceparent": "00-1b2da6060b3db44f82642caa1c9e3843-c1726dafce85744b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "00b2cc9d3252ea63c8008c0d674967cd", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "00b2cc9d-3252-ea63-c800-8c0d674967cd", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:59 GMT", - "elapsed-time": "123", + "Date": "Fri, 26 Jun 2020 06:33:49 GMT", + "elapsed-time": "96", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "00b2cc9d-3252-ea63-c800-8c0d674967cd", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "00b2cc9d-3252-ea63-c800-8c0d674967cd" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-98fa216bbeb9f948b69afa052ffce2e5-9c71915680208b4e-00", + "traceparent": "00-6580cc7f44103e4ca4d1daa3ae7db4c9-3c81e1ea73b66049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f5c95fa9994e80fe18fedc7e2318de34", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "f5c95fa9-994e-80fe-18fe-dc7e2318de34", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:02 GMT", - "elapsed-time": "130", + "Date": "Fri, 26 Jun 2020 06:33:51 GMT", + "elapsed-time": "88", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f5c95fa9-994e-80fe-18fe-dc7e2318de34", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f5c95fa9-994e-80fe-18fe-dc7e2318de34" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,21 +24044,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-aa50636a114d884b90b00971be9bc44e-aefc496417164042-00", + "traceparent": "00-56e50f7235ccf348964778fc84b2f37f-8643a19de3423249-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f11388be82178b065a744a7385677a06", "x-ms-return-client-request-id": "true" @@ -24069,16 +24075,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "f11388be-8217-8b06-5a74-4a7385677a06", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:02 GMT", - "elapsed-time": "67", + "Date": "Fri, 26 Jun 2020 06:33:51 GMT", + "elapsed-time": "71", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f11388be-8217-8b06-5a74-4a7385677a06", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f11388be-8217-8b06-5a74-4a7385677a06" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28092,21 +28100,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-faee8f4ade4f564588deb0d56583cc94-14dacb7fe1118147-00", + "traceparent": "00-0e0b29603f531047acb602df264fa341-2c87863dc6cdb443-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5c1f75ad18630400cd31e85456e5c6af", "x-ms-return-client-request-id": "true" @@ -28123,16 +28131,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5c1f75ad-1863-0400-cd31-e85456e5c6af", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:02 GMT", - "elapsed-time": "14", + "Date": "Fri, 26 Jun 2020 06:33:51 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5c1f75ad-1863-0400-cd31-e85456e5c6af", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5c1f75ad-1863-0400-cd31-e85456e5c6af" }, "ResponseBody": { "value": [ @@ -28144,15 +28154,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027viradbce\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027qjxcyvbe\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-b3607dd2c5128040b2b5db8fa3a3c7b8-6fa909e8edd0d84b-00", + "traceparent": "00-1b7f7b8537db894aa9124a637dc63919-090a80b91c8fff42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "de4e5722753627b6583d9bda4f8afab0", "x-ms-return-client-request-id": "true" @@ -28161,21 +28171,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:08:02 GMT", - "elapsed-time": "213", + "client-request-id": "de4e5722-7536-27b6-583d-9bda4f8afab0", + "Date": "Fri, 26 Jun 2020 06:33:52 GMT", + "elapsed-time": "286", "Expires": "-1", "Pragma": "no-cache", "request-id": "de4e5722-7536-27b6-583d-9bda4f8afab0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "de4e5722-7536-27b6-583d-9bda4f8afab0" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1771240683", - "SearchIndexName": "viradbce", + "SearchIndexName": "qjxcyvbe", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f52c380893b7..ef3e568250b4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStatic.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-7103cd4002ef5845b5d78789d75a5649-6881e08d75692448-00", + "traceparent": "00-d4abb07800eb11428fea162195fafbaf-60d337ef4c994b4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2c6015e835f521ca6c2720b8ac87037f", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "2c6015e8-35f5-21ca-6c27-20b8ac87037f", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:38 GMT", - "elapsed-time": "243", + "Date": "Fri, 26 Jun 2020 06:31:14 GMT", + "elapsed-time": "161", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "2c6015e8-35f5-21ca-6c27-20b8ac87037f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "2c6015e8-35f5-21ca-6c27-20b8ac87037f" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-1234ea7b74be6445bcf199e74c9fdcbd-950e9dc9f83df64d-00", + "traceparent": "00-72851448885f7341b3938e5cc24719c7-b673f28daa15294f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0f9e38f61f822ff50bfdfa7414cd09d1", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0f9e38f6-1f82-2ff5-0bfd-fa7414cd09d1", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:40 GMT", - "elapsed-time": "157", + "Date": "Fri, 26 Jun 2020 06:31:17 GMT", + "elapsed-time": "174", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0f9e38f6-1f82-2ff5-0bfd-fa7414cd09d1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0f9e38f6-1f82-2ff5-0bfd-fa7414cd09d1" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-becd2b5de5ffcc41b4de48c4df38df33-8b1a7308113ecb4e-00", + "traceparent": "00-9fa5ddc9d920f948b4b679e503baa1b5-cff9d0eed4a81846-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a7f7b83ea963a54557c7332aa10fae73", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "a7f7b83e-a963-a545-57c7-332aa10fae73", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:42 GMT", - "elapsed-time": "105", + "Date": "Fri, 26 Jun 2020 06:31:19 GMT", + "elapsed-time": "119", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a7f7b83e-a963-a545-57c7-332aa10fae73", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a7f7b83e-a963-a545-57c7-332aa10fae73" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,21 +24044,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-b1e13dc38550744a8b66a72cda28356d-89653b131ddb1d45-00", + "traceparent": "00-f91595c7b1aca64f8e4afa3d14230f33-61c6d11bc722bb49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e6405735a9b3c84e1f3120f73a560d9e", "x-ms-return-client-request-id": "true" @@ -24069,16 +24075,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "e6405735-a9b3-c84e-1f31-20f73a560d9e", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:43 GMT", - "elapsed-time": "87", + "Date": "Fri, 26 Jun 2020 06:31:19 GMT", + "elapsed-time": "90", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e6405735-a9b3-c84e-1f31-20f73a560d9e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e6405735-a9b3-c84e-1f31-20f73a560d9e" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28092,21 +28100,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-172d43d6bbad2848a6457060d4e20c0c-3ea06d22622bed4e-00", + "traceparent": "00-2848411eeb035b40b3595eb6c8825e7a-1accce019ff5994b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f4794e1e5b904d1cf2f9b7baebcb8dfb", "x-ms-return-client-request-id": "true" @@ -28123,16 +28131,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f4794e1e-5b90-4d1c-f2f9-b7baebcb8dfb", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:05:43 GMT", - "elapsed-time": "22", + "Date": "Fri, 26 Jun 2020 06:31:19 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f4794e1e-5b90-4d1c-f2f9-b7baebcb8dfb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f4794e1e-5b90-4d1c-f2f9-b7baebcb8dfb" }, "ResponseBody": { "value": [ @@ -28144,15 +28154,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fpgcoely\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027mlhwbyjp\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-738604a75ff09d4da843d2dd305d2b13-dd2dbba2f09b184b-00", + "traceparent": "00-2b0c56e490f25a4bac1ee84d96bf733d-e1cf31437728e44f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bd3e864f238d941e692e8831884e6a01", "x-ms-return-client-request-id": "true" @@ -28161,21 +28171,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:05:43 GMT", - "elapsed-time": "226", + "client-request-id": "bd3e864f-238d-941e-692e-8831884e6a01", + "Date": "Fri, 26 Jun 2020 06:31:20 GMT", + "elapsed-time": "371", "Expires": "-1", "Pragma": "no-cache", "request-id": "bd3e864f-238d-941e-692e-8831884e6a01", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bd3e864f-238d-941e-692e-8831884e6a01" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1252796088", - "SearchIndexName": "fpgcoely", + "SearchIndexName": "mlhwbyjp", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 39d62c1c7a3c..3bf9e39d3a5e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueStaticAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-c0586aa09173f94f92ca06687dd827dd-3448cca94a43ee46-00", + "traceparent": "00-ab30f7228dde8d4aad31f82040f522ce-f92f7fd6c6d35c4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "634278f9039a44b2a6b4e6cc28369b7a", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "634278f9-039a-44b2-a6b4-e6cc28369b7a", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:25 GMT", - "elapsed-time": "268", + "Date": "Fri, 26 Jun 2020 06:34:17 GMT", + "elapsed-time": "97", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "634278f9-039a-44b2-a6b4-e6cc28369b7a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "634278f9-039a-44b2-a6b4-e6cc28369b7a" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-29deb1877dcd124395154c37552b2684-f018ba5ea48f5d4d-00", + "traceparent": "00-a91c86f560a49c4f92d31652859b10a7-fb02f35846549845-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fe20c7913bf06794253635ee907b395b", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "fe20c791-3bf0-6794-2536-35ee907b395b", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:28 GMT", - "elapsed-time": "154", + "Date": "Fri, 26 Jun 2020 06:34:20 GMT", + "elapsed-time": "103", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "fe20c791-3bf0-6794-2536-35ee907b395b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "fe20c791-3bf0-6794-2536-35ee907b395b" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-a30170fe933cd044818ba67b141df27f-7e0d260cd1d4bf4a-00", + "traceparent": "00-9b2e71e10b002b479cbbf4fcb4f22742-6165480f3d5bf54a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a7147c3455297fd1e8dcd5fce400f6ab", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "a7147c34-5529-7fd1-e8dc-d5fce400f6ab", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:30 GMT", - "elapsed-time": "66", + "Date": "Fri, 26 Jun 2020 06:34:21 GMT", + "elapsed-time": "79", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a7147c34-5529-7fd1-e8dc-d5fce400f6ab", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a7147c34-5529-7fd1-e8dc-d5fce400f6ab" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,21 +24044,21 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-671fcfe77254b7499aaa982c3a39e1da-7c61dde39ff5504f-00", + "traceparent": "00-3bb3e1edb60f794ea40a38df9d508a35-3a348801973bd647-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d440dd58923abdb1e4da3d64cec4b32b", "x-ms-return-client-request-id": "true" @@ -24069,16 +24075,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "d440dd58-923a-bdb1-e4da-3d64cec4b32b", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:30 GMT", - "elapsed-time": "61", + "Date": "Fri, 26 Jun 2020 06:34:22 GMT", + "elapsed-time": "57", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d440dd58-923a-bdb1-e4da-3d64cec4b32b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d440dd58-923a-bdb1-e4da-3d64cec4b32b" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28092,21 +28100,21 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "115", "Content-Type": "application/json", - "traceparent": "00-170f85ec832aeb46b37fe2e2ff6f6731-ddc9e815413d0748-00", + "traceparent": "00-9747957e119f1c46acb83ebfdf6a34fb-4b83b3d9daff7449-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ac988a7bf4213c50f5a0151366988224", "x-ms-return-client-request-id": "true" @@ -28123,16 +28131,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "ac988a7b-f421-3c50-f5a0-151366988224", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:30 GMT", + "Date": "Fri, 26 Jun 2020 06:34:22 GMT", "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ac988a7b-f421-3c50-f5a0-151366988224", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ac988a7b-f421-3c50-f5a0-151366988224" }, "ResponseBody": { "value": [ @@ -28144,15 +28154,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027pccapqps\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fqlrtcmn\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-3a701480cf59a245a3151ab857a73823-6097f832459c4246-00", + "traceparent": "00-732bd838a910d646854f617cc92e8675-0baf936816aa764b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b395893f653aa220ca57c24e186db024", "x-ms-return-client-request-id": "true" @@ -28161,21 +28171,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:08:30 GMT", - "elapsed-time": "220", + "client-request-id": "b395893f-653a-a220-ca57-c24e186db024", + "Date": "Fri, 26 Jun 2020 06:34:22 GMT", + "elapsed-time": "211", "Expires": "-1", "Pragma": "no-cache", "request-id": "b395893f-653a-a220-ca57-c24e186db024", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b395893f-653a-a220-ca57-c24e186db024" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1158078461", - "SearchIndexName": "pccapqps", + "SearchIndexName": "fqlrtcmn", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 6ca770244039..d8e769d6a865 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSize.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-647f860abd935243bf5fe4365c3869f7-3e52b56158a95443-00", + "traceparent": "00-2a4297dae2b172499e46e2832426282a-348a4ae07440b849-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "143128a3b6549d0c319609d835272ac6", "x-ms-return-client-request-id": "true" @@ -651,16 +651,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "143128a3-b654-9d0c-3196-09d835272ac6", "Content-Length": "10127", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:07 GMT", - "elapsed-time": "95", + "Date": "Fri, 26 Jun 2020 06:31:46 GMT", + "elapsed-time": "38", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "143128a3-b654-9d0c-3196-09d835272ac6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "143128a3-b654-9d0c-3196-09d835272ac6" }, "ResponseBody": { "value": [ @@ -1610,17 +1612,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-d35015d1fba8314ea4b4d419d18cdca7-023301889954b74f-00", + "traceparent": "00-93f3e6ffab8a5443820649bdb4cc971f-69cd793647c37d41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "24ec8e84827e109ee80f0e92f47943f4", "x-ms-return-client-request-id": "true" @@ -1635,16 +1637,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2179", + "client-request-id": "24ec8e84-827e-109e-e80f-0e92f47943f4", + "Content-Length": "2171", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:08 GMT", - "elapsed-time": "21", + "Date": "Fri, 26 Jun 2020 06:31:47 GMT", + "elapsed-time": "18", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "24ec8e84-827e-109e-e80f-0e92f47943f4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "24ec8e84-827e-109e-e80f-0e92f47943f4" }, "ResponseBody": { "@search.nextPageParameters": { @@ -1857,21 +1861,21 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-9610fe31212a5e48b2d748b4e9505ab8-c270e5848f82ad44-00", + "traceparent": "00-27c29b96effd5642be2a47529a566903-91a0023981c75149-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b76faf0a21e8d900b906e6b5158e2c00", "x-ms-return-client-request-id": "true" @@ -1887,16 +1891,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2159", + "client-request-id": "b76faf0a-21e8-d900-b906-e6b5158e2c00", + "Content-Length": "2151", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:08 GMT", + "Date": "Fri, 26 Jun 2020 06:31:47 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b76faf0a-21e8-d900-b906-e6b5158e2c00", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b76faf0a-21e8-d900-b906-e6b5158e2c00" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2109,21 +2115,21 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-1c7ee2728cd5e94cb5c03ce0d20fb842-d44ac043085c2f4e-00", + "traceparent": "00-819fabeee93d7e4ab77a11e3ba496945-51f9b9cdbea34d40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "543b81e2e8f6213089202b44a879a9b8", "x-ms-return-client-request-id": "true" @@ -2139,16 +2145,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2132", + "client-request-id": "543b81e2-e8f6-2130-8920-2b44a879a9b8", + "Content-Length": "2124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:08 GMT", + "Date": "Fri, 26 Jun 2020 06:31:47 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "543b81e2-e8f6-2130-8920-2b44a879a9b8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "543b81e2-e8f6-2130-8920-2b44a879a9b8" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2361,21 +2369,21 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-24ef51d00135704bb76af08aff1c3d0c-6ee80d7c3897e641-00", + "traceparent": "00-c0835438103c6140a2d5874909d40851-3ba90f11d4783a41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "86ce145273b763de8d136a789be9fb59", "x-ms-return-client-request-id": "true" @@ -2391,16 +2399,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "86ce1452-73b7-63de-8d13-6a789be9fb59", "Content-Length": "639", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:08 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:31:47 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "86ce1452-73b7-63de-8d13-6a789be9fb59", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "86ce1452-73b7-63de-8d13-6a789be9fb59" }, "ResponseBody": { "value": [ @@ -2476,15 +2486,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027tjblxceu\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027evxnbtmi\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-1f70d488227b874bb10b1f9c573b517c-713dc2461a59ec4d-00", + "traceparent": "00-28bb6cbcef50964389c4df08d4115f39-9933a057f9cb4948-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "72b00de3ee3d21fe7e4e2dc7f5bb303f", "x-ms-return-client-request-id": "true" @@ -2493,21 +2503,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:06:08 GMT", - "elapsed-time": "199", + "client-request-id": "72b00de3-ee3d-21fe-7e4e-2dc7f5bb303f", + "Date": "Fri, 26 Jun 2020 06:31:48 GMT", + "elapsed-time": "315", "Expires": "-1", "Pragma": "no-cache", "request-id": "72b00de3-ee3d-21fe-7e4e-2dc7f5bb303f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "72b00de3-ee3d-21fe-7e4e-2dc7f5bb303f" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "2136761083", - "SearchIndexName": "tjblxceu", + "SearchIndexName": "evxnbtmi", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 28270975168c..094f82f20a3a 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/CanContinueWithoutSizeAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-433fd3c0c78b2c41bc3ed9478db0b52e-1e5938343a260a45-00", + "traceparent": "00-bc2f279d7de82742a9eaa659a741fd3e-075a71c47c14814a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "26c7e4d37d542c947b8c82566387c512", "x-ms-return-client-request-id": "true" @@ -651,16 +651,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "26c7e4d3-7d54-2c94-7b8c-82566387c512", "Content-Length": "10127", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:54 GMT", - "elapsed-time": "114", + "Date": "Fri, 26 Jun 2020 06:34:48 GMT", + "elapsed-time": "44", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "26c7e4d3-7d54-2c94-7b8c-82566387c512", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "26c7e4d3-7d54-2c94-7b8c-82566387c512" }, "ResponseBody": { "value": [ @@ -1610,17 +1612,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-34e3375379db364ca2c3bd40a69a9b1a-804d2b8c5a450c46-00", + "traceparent": "00-fa23b7f216d2294f88f5effc22a317d6-adb6c67ecfe56549-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3c92c6b9a55af734786142bac7cf03c3", "x-ms-return-client-request-id": "true" @@ -1635,16 +1637,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2179", + "client-request-id": "3c92c6b9-a55a-f734-7861-42bac7cf03c3", + "Content-Length": "2171", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:55 GMT", - "elapsed-time": "17", + "Date": "Fri, 26 Jun 2020 06:34:50 GMT", + "elapsed-time": "19", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3c92c6b9-a55a-f734-7861-42bac7cf03c3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3c92c6b9-a55a-f734-7861-42bac7cf03c3" }, "ResponseBody": { "@search.nextPageParameters": { @@ -1857,21 +1861,21 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-2e734d6d43b46d4cb9abb82f928c34c5-5bac33beeec65f49-00", + "traceparent": "00-5c9643a24ec0a14e93ca4b595aab496d-f94c48363285254e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e6d350064d6a475bafcf271925a51bf3", "x-ms-return-client-request-id": "true" @@ -1887,16 +1891,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2159", + "client-request-id": "e6d35006-4d6a-475b-afcf-271925a51bf3", + "Content-Length": "2151", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:34:50 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e6d35006-4d6a-475b-afcf-271925a51bf3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e6d35006-4d6a-475b-afcf-271925a51bf3" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2109,21 +2115,21 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-bd198c83976aac459c88b88b97960ea0-0ee7845fbe97d841-00", + "traceparent": "00-d81c8a317b0b144fbae3d56315b98f93-057c8303585b204b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9b69ed6da2022eb4afcfadf33bd965ab", "x-ms-return-client-request-id": "true" @@ -2139,16 +2145,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2132", + "client-request-id": "9b69ed6d-a202-2eb4-afcf-adf33bd965ab", + "Content-Length": "2124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 06:34:50 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9b69ed6d-a202-2eb4-afcf-adf33bd965ab", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9b69ed6d-a202-2eb4-afcf-adf33bd965ab" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2361,21 +2369,21 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-63b814c3a9651941a34d8d42838e4bed-c22baf81141d144d-00", + "traceparent": "00-e0901a7b69dfd749b2c368407658c212-c4010e57b1c99345-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "124fbf88dfb46ca76a4b8d8b7d1bd1d2", "x-ms-return-client-request-id": "true" @@ -2391,16 +2399,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "124fbf88-dfb4-6ca7-6a4b-8d8b7d1bd1d2", "Content-Length": "639", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:34:50 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "124fbf88-dfb4-6ca7-6a4b-8d8b7d1bd1d2", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "124fbf88-dfb4-6ca7-6a4b-8d8b7d1bd1d2" }, "ResponseBody": { "value": [ @@ -2476,15 +2486,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rfvkbfbh\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027sbqyotlg\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-146c7bb0f09a1741861718308c2a9d70-be87f409015abc41-00", + "traceparent": "00-b80335e9e0f7f942b0c1c12037cf6c46-d17126a1a0f77747-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d94d4f45686664c19ba5369a9f680bd5", "x-ms-return-client-request-id": "true" @@ -2493,21 +2503,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "190", + "client-request-id": "d94d4f45-6866-64c1-9ba5-369a9f680bd5", + "Date": "Fri, 26 Jun 2020 06:34:50 GMT", + "elapsed-time": "236", "Expires": "-1", "Pragma": "no-cache", "request-id": "d94d4f45-6866-64c1-9ba5-369a9f680bd5", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d94d4f45-6866-64c1-9ba5-369a9f680bd5" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "555900954", - "SearchIndexName": "rfvkbfbh", + "SearchIndexName": "sbqyotlg", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 862a6c607cdb..7bce4b525bda 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAny.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-485d5bee327ca44480cb204c7109c23d-f63519e4c9a5a248-00", + "traceparent": "00-4a65d23613a7fb40b7ae81d53a273e8c-7edeffceb0748047-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a03f9a25bc31a01a36c04ceb302bbee3", "x-ms-return-client-request-id": "true" @@ -24,227 +24,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5194", + "client-request-id": "a03f9a25-bc31-a01a-36c0-4ceb302bbee3", + "Content-Length": "5923", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", - "elapsed-time": "105", + "Date": "Fri, 26 Jun 2020 06:31:50 GMT", + "elapsed-time": "121", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a03f9a25-bc31-a01a-36c0-4ceb302bbee3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a03f9a25-bc31-a01a-36c0-4ceb302bbee3" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.30154645, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.16547734, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - }, - { - "@search.score": 0.0635256, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.0635256, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.0635256, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.041261088, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.019851752, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3545203,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:2.245087,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.4634744,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:0.5496142,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}]}" } ], "Variables": { "RandomSeed": "100396070", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3d5c708110df..4efb1a42c675 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DefaultSearchModeIsAnyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-db1bf52b6b0c094faded7b7de474f141-1dc35f778a0a2b40-00", + "traceparent": "00-a0860aaa8623d3489b4555dafbd46ade-26db3b80a84eb245-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d166a7fadfc6bdab8c593ef48d813a9b", "x-ms-return-client-request-id": "true" @@ -24,227 +24,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5194", + "client-request-id": "d166a7fa-dfc6-bdab-8c59-3ef48d813a9b", + "Content-Length": "5923", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "83", + "Date": "Fri, 26 Jun 2020 06:34:52 GMT", + "elapsed-time": "119", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d166a7fa-dfc6-bdab-8c59-3ef48d813a9b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d166a7fa-dfc6-bdab-8c59-3ef48d813a9b" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.30154645, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.16547734, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - }, - { - "@search.score": 0.0635256, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.0635256, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.0635256, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.041261088, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.019851752, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3545203,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:2.245087,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.778081,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.4634744,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:0.5496142,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]}]}" } ], "Variables": { "RandomSeed": "1142184435", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentPagingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentPagingAsync.json index e84ddd9db73d..80ad1ca74c16 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentPagingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentPagingAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -10040,7 +10040,7 @@ } }, { - "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -19989,7 +19989,7 @@ } }, { - "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -24038,11 +24038,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -28091,11 +28091,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-pbeykfxy.search.windows.net/indexes(\u0027ktgceavu\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -28147,4 +28147,4 @@ "SearchIndexName": "ktgceavu", "SearchServiceName": "azs-net-pbeykfxy" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocuments.json index b04be461c0e1..739fbdeb8e5c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "49", "Content-Type": "application/json", - "traceparent": "00-5fced8adcf49a243aa3ef8b5fdee47ad-3778ac6afc77e54e-00", + "traceparent": "00-8ec6a15cca72bb4bb26202cdfe849a34-49970b3444dfb84e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "af3d72c5229a545aa2a106b6d4f1c2e8", "x-ms-return-client-request-id": "true" @@ -27,8 +27,8 @@ "client-request-id": "af3d72c5-229a-545a-a2a1-06b6d4f1c2e8", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:41 GMT", - "elapsed-time": "89", + "Date": "Fri, 26 Jun 2020 06:31:50 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,9 +42,8 @@ ], "Variables": { "RandomSeed": "2078391119", - "SearchIndexName": "qphdytqm", - "SEARCH_ADMIN_API_KEY": "Sanitized", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentsAsync.json index 581a9f7c7879..4eaab72fc9c7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/DynamicDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "49", "Content-Type": "application/json", - "traceparent": "00-62ea22ce791255489e70a5e3774d7102-d18b2baa0f2c084b-00", + "traceparent": "00-395841fc39dfb24cbf56d03f5fe180a5-f291237d5a1cf54c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f1be1cfc524710cf6f64f12e2324d803", "x-ms-return-client-request-id": "true" @@ -27,8 +27,8 @@ "client-request-id": "f1be1cfc-5247-10cf-6f64-f12e2324d803", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:42 GMT", - "elapsed-time": "32", + "Date": "Fri, 26 Jun 2020 06:34:52 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,8 +42,8 @@ ], "Variables": { "RandomSeed": "1699543880", - "SearchIndexName": "qphdytqm", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 ac57e5e63f4c..04cf8abb6c65 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/Filter.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-e32b275be85e564897746c4a4a26e3b9-3da8d794c7505a46-00", + "traceparent": "00-9a41b7d7d33e2546adf4e75c219d6c37-deac6a1eba94d246-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "07a3c50b3edb39a6194807ff352b8e6c", "x-ms-return-client-request-id": "true" @@ -24,67 +24,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1193", + "client-request-id": "07a3c50b-3edb-39a6-1948-07ff352b8e6c", + "Content-Length": "1405", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", + "Date": "Fri, 26 Jun 2020 06:31:50 GMT", "elapsed-time": "14", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "07a3c50b-3edb-39a6-1948-07ff352b8e6c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "07a3c50b-3edb-39a6-1948-07ff352b8e6c" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "1956187125", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 05d6d9d80e42..4b441f995797 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/FilterAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-1088384fe107fd4a870fdf9360687546-83833c24c8624b45-00", + "traceparent": "00-ead4e9d6cf1d1c46839ab2e6ef027ef8-1025e5fa0a55034a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dd16b3eba0826aec7c0eb5a7d63f766c", "x-ms-return-client-request-id": "true" @@ -24,67 +24,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1193", + "client-request-id": "dd16b3eb-a082-6aec-7c0e-b5a7d63f766c", + "Content-Length": "1405", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:34:52 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "dd16b3eb-a082-6aec-7c0e-b5a7d63f766c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "dd16b3eb-a082-6aec-7c0e-b5a7d63f766c" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "94111913", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 874756fa3809..08e7ef8fffc0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlighting.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "188", "Content-Type": "application/json", - "traceparent": "00-4b46832c6a26824a883c1a1436020491-5dbaebd0369b6646-00", + "traceparent": "00-7b874e0030e52241947fb04b9b589f6b-9d249ae9e314894d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "158d50b0f88f6f2d22874a374cb4873b", "x-ms-return-client-request-id": "true" @@ -28,57 +28,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1049", + "client-request-id": "158d50b0-f88f-6f2d-2287-4a374cb4873b", + "Content-Length": "1156", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", - "elapsed-time": "16", + "Date": "Fri, 26 Jun 2020 06:31:51 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "158d50b0-f88f-6f2d-2287-4a374cb4873b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "158d50b0-f88f-6f2d-2287-4a374cb4873b" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.624714, - "@search.highlights": { - "category": [ - "\u003Cb\u003ELuxury\u003C/b\u003E" - ], - "description": [ - "Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like \u003Cb\u003Eluxury\u003C/b\u003E \u003Cb\u003Ehotels\u003C/b\u003E.", - "We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E." - ] - }, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3198504,\u0022@search.highlights\u0022:{\u0022category\u0022:[\u0022\u003Cb\u003ELuxury\u003C/b\u003E\u0022],\u0022description\u0022:[\u0022Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like \u003Cb\u003Eluxury\u003C/b\u003E \u003Cb\u003Ehotels\u003C/b\u003E.\u0022,\u0022We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E.\u0022]},\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "2066752673", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e7c7c4ad7c5c..925c8cbd5d9c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/HitHighlightingAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "188", "Content-Type": "application/json", - "traceparent": "00-365549fc0bbd5a4d8e58248560bc7a60-c457c999a9696f4a-00", + "traceparent": "00-f873e9f05c331646a41ab290d28f6304-e1f1b9a7a1684244-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "72baba7db5f6ee4f1f027196fc81deab", "x-ms-return-client-request-id": "true" @@ -28,57 +28,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1049", + "client-request-id": "72baba7d-b5f6-ee4f-1f02-7196fc81deab", + "Content-Length": "1156", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:34:52 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "72baba7d-b5f6-ee4f-1f02-7196fc81deab", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "72baba7d-b5f6-ee4f-1f02-7196fc81deab" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.624714, - "@search.highlights": { - "category": [ - "\u003Cb\u003ELuxury\u003C/b\u003E" - ], - "description": [ - "Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like \u003Cb\u003Eluxury\u003C/b\u003E \u003Cb\u003Ehotels\u003C/b\u003E.", - "We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E." - ] - }, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3198504,\u0022@search.highlights\u0022:{\u0022category\u0022:[\u0022\u003Cb\u003ELuxury\u003C/b\u003E\u0022],\u0022description\u0022:[\u0022Best \u003Cb\u003Ehotel\u003C/b\u003E in town if you like \u003Cb\u003Eluxury\u003C/b\u003E \u003Cb\u003Ehotels\u003C/b\u003E.\u0022,\u0022We highly recommend this \u003Cb\u003Ehotel\u003C/b\u003E.\u0022]},\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "1321798646", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 4113fff9b2e5..b6a92150143b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntax.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "110", "Content-Type": "application/json", - "traceparent": "00-9a55609f4a698a498fb2275c3d57e9b5-ad7a8063800c9b4b-00", + "traceparent": "00-c408d76a0954eb49afbdc515010f8314-77806098a7bae341-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2d0225a107f197e3c7d80141a0cbc932", "x-ms-return-client-request-id": "true" @@ -26,21 +26,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "2d0225a1-07f1-97e3-c7d8-0141a0cbc932", "Content-Length": "76", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", - "elapsed-time": "55", + "Date": "Fri, 26 Jun 2020 06:31:51 GMT", + "elapsed-time": "18", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "2d0225a1-07f1-97e3-c7d8-0141a0cbc932", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "2d0225a1-07f1-97e3-c7d8-0141a0cbc932" }, "ResponseBody": { "value": [ { - "@search.score": 1.8411939, + "@search.score": 1.1457375, "hotelName": "Roach Motel", "rating": 1 } @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "1305604714", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3cdbe6bf1002..c559ec76c885 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/LuceneSyntaxAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "110", "Content-Type": "application/json", - "traceparent": "00-e3f4ecd91dcb3544be4fefef45571a44-d8064ac6b871eb4b-00", + "traceparent": "00-7dfe3217d02ee6479a86623b509a2e61-7f9dee0f90167d4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "547bdca856ac6b95fbe8f0f9687543ee", "x-ms-return-client-request-id": "true" @@ -26,21 +26,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "547bdca8-56ac-6b95-fbe8-f0f9687543ee", "Content-Length": "76", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "11", + "Date": "Fri, 26 Jun 2020 06:34:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "547bdca8-56ac-6b95-fbe8-f0f9687543ee", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "547bdca8-56ac-6b95-fbe8-f0f9687543ee" }, "ResponseBody": { "value": [ { - "@search.score": 1.8411939, + "@search.score": 1.1457375, "hotelName": "Roach Motel", "rating": 1 } @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "1340537138", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7c2b3602e1ab..8dcd451f9b67 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-fce9d7d89ca64648ae55f5f960b4cab6-96523d7a00e8be47-00", + "traceparent": "00-748672796c3ef84999e37c02b7896b8f-e073834a2e927f4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e3ce0ea2689207604ed9301360389e2d", "x-ms-return-client-request-id": "true" @@ -25,276 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6362", + "client-request-id": "e3ce0ea2-6892-0760-4ed9-301360389e2d", + "Content-Length": "7101", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:31:51 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e3ce0ea2-6892-0760-4ed9-301360389e2d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e3ce0ea2-6892-0760-4ed9-301360389e2d" }, - "ResponseBody": { - "@search.coverage": 100.0, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.coverage\u0022:100.0,\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "1407765009", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 27bf45a7a4ed..dbd9dd648421 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/MinimumCoverageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-69b8419670d0d842bf000cc9ea9ca9f8-426f0ee191058c47-00", + "traceparent": "00-68d7e513cb73eb43aae007671dacedfa-fb2727423cb04a40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2f588dc52dbacd39693487e8d6cba384", "x-ms-return-client-request-id": "true" @@ -25,276 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6362", + "client-request-id": "2f588dc5-2dba-cd39-6934-87e8d6cba384", + "Content-Length": "7101", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:34:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "2f588dc5-2dba-cd39-6934-87e8d6cba384", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "2f588dc5-2dba-cd39-6934-87e8d6cba384" }, - "ResponseBody": { - "@search.coverage": 100.0, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.coverage\u0022:100.0,\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "640477458", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 fdeaaa45f36b..697ac5bd6440 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScore.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-4f6dea5f83cbca43a490c08bd9eef3c3-09088b82a932434f-00", + "traceparent": "00-94b5103895951e44b044eb44dfc30264-75d6b2a3dba9ed41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "51839d6300b974b44332f5bf90cf6254", "x-ms-return-client-request-id": "true" @@ -25,97 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1725", + "client-request-id": "51839d63-00b9-74b4-4332-f5bf90cf6254", + "Content-Length": "1934", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:09 GMT", + "Date": "Fri, 26 Jun 2020 06:31:51 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "51839d63-00b9-74b4-4332-f5bf90cf6254", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "51839d63-00b9-74b4-4332-f5bf90cf6254" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.22271262, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.1680664, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:6.1112947,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:3.0291324,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "1970769932", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 12c321c9e2ec..cc6a1dc850f7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/NoOrderBySortsByScoreAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "93", "Content-Type": "application/json", - "traceparent": "00-45cfba41a2fc1f428199b52680e1a545-e0ac086967f9d540-00", + "traceparent": "00-99ad36a08cc73a4c9fb27751f877e6c4-3bdbf9eb52691f4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "08e33c279b0342752b62202427bad24e", "x-ms-return-client-request-id": "true" @@ -25,97 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1725", + "client-request-id": "08e33c27-9b03-4275-2b62-202427bad24e", + "Content-Length": "1934", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:08:56 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:34:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "08e33c27-9b03-4275-2b62-202427bad24e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "08e33c27-9b03-4275-2b62-202427bad24e" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.22271262, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 0.1680664, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:6.1112947,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:3.0291324,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "317676426", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTies.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTies.json index ab3ed047bfc9..bdcaefba3856 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTies.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTies.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "160", "Content-Type": "application/json", - "traceparent": "00-90f0efc525a74b41a0cd1ff5d1f9e1bc-a4790405f6848446-00", + "traceparent": "00-f1e92e0afe19d94f87257bd8d19e2173-b31e14dd7ff3a542-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1a47832c488da3c259cce68d142373d9", "x-ms-return-client-request-id": "true" @@ -28,8 +28,8 @@ "client-request-id": "1a47832c-488d-a3c2-59cc-e68d142373d9", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:41 GMT", - "elapsed-time": "13", + "Date": "Fri, 26 Jun 2020 06:31:51 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -43,8 +43,8 @@ ], "Variables": { "RandomSeed": "1887389748", - "SearchIndexName": "qphdytqm", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTiesAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTiesAsync.json index dbb54d5a034a..82270eff7181 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTiesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/OrderByProgressivelyBreaksTiesAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "160", "Content-Type": "application/json", - "traceparent": "00-f57f4d5f7f17d443b1b795ec5c12a8e8-797bddb4ddb21c46-00", + "traceparent": "00-ea88d76699af9c48a7f60c6222cbb120-09f6766cfab2074e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e05214803ce43a086e16d650d3aad6f4", "x-ms-return-client-request-id": "true" @@ -28,8 +28,8 @@ "client-request-id": "e0521480-3ce4-3a08-6e16-d650d3aad6f4", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:42 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:34:53 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -43,8 +43,8 @@ ], "Variables": { "RandomSeed": "1861346366", - "SearchIndexName": "qphdytqm", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 9f63f24d312d..40e3bfff5002 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-02c9be149c6f5545ac2a57066a11f773-161ef6748748c14c-00", + "traceparent": "00-07f5969112d0944d879903bbfcece67a-516c9186ee7a7743-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f902170b5f6982db30c334500832f83e", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f902170b-5f69-82db-30c3-34500832f83e", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:33 GMT", - "elapsed-time": "195", + "Date": "Fri, 26 Jun 2020 06:32:15 GMT", + "elapsed-time": "126", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f902170b-5f69-82db-30c3-34500832f83e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f902170b-5f69-82db-30c3-34500832f83e" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-95a3ca2dcf1cf94fac413883b1d9d5a0-f72349b2359afa46-00", + "traceparent": "00-b05e06e995d3ee47b7f5c7162fe112b3-9528a7b7d16df54d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "90bae7f3decf0a33e3adc707e20db7b1", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "90bae7f3-decf-0a33-e3ad-c707e20db7b1", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:35 GMT", - "elapsed-time": "107", + "Date": "Fri, 26 Jun 2020 06:32:17 GMT", + "elapsed-time": "115", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "90bae7f3-decf-0a33-e3ad-c707e20db7b1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "90bae7f3-decf-0a33-e3ad-c707e20db7b1" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-470c4b1e94764448aa2062e4b8e8ab2e-07079ff734f6b647-00", + "traceparent": "00-c70b3dc8e2184240b2f09c0583173266-a3b12df72c028e4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1de60394e06a048713226216d5b1bb2e", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "1de60394-e06a-0487-1322-6216d5b1bb2e", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:38 GMT", - "elapsed-time": "68", + "Date": "Fri, 26 Jun 2020 06:32:19 GMT", + "elapsed-time": "81", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "1de60394-e06a-0487-1322-6216d5b1bb2e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1de60394-e06a-0487-1322-6216d5b1bb2e" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,11 +24044,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -24050,8 +24056,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b2a29505a1092c1ee3f715bc97d3a022", "x-ms-return-client-request-id": "true" @@ -24068,16 +24074,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "b2a29505-a109-2c1e-e3f7-15bc97d3a022", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:38 GMT", - "elapsed-time": "123", + "Date": "Fri, 26 Jun 2020 06:32:19 GMT", + "elapsed-time": "72", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b2a29505-a109-2c1e-e3f7-15bc97d3a022", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b2a29505-a109-2c1e-e3f7-15bc97d3a022" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28091,11 +28099,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -28103,8 +28111,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "05bb820cdb4b13d35fb57dac7c1c3432", "x-ms-return-client-request-id": "true" @@ -28121,16 +28129,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "05bb820c-db4b-13d3-5fb5-7dac7c1c3432", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:06:38 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:32:19 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "05bb820c-db4b-13d3-5fb5-7dac7c1c3432", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "05bb820c-db4b-13d3-5fb5-7dac7c1c3432" }, "ResponseBody": { "value": [ @@ -28142,15 +28152,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027rymmqmwa\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027ttqelxsf\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-7e81555f57ad174cac7b84dde390ac81-5c61279c83f7ea45-00", + "traceparent": "00-089dc0fb9c09ec4c886877039a1af826-23923451413e7a4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4c0299f2056bf2a8e5ba3973cacb6c40", "x-ms-return-client-request-id": "true" @@ -28159,21 +28169,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:06:38 GMT", - "elapsed-time": "429", + "client-request-id": "4c0299f2-056b-f2a8-e5ba-3973cacb6c40", + "Date": "Fri, 26 Jun 2020 06:32:19 GMT", + "elapsed-time": "247", "Expires": "-1", "Pragma": "no-cache", "request-id": "4c0299f2-056b-f2a8-e5ba-3973cacb6c40", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4c0299f2-056b-f2a8-e5ba-3973cacb6c40" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "965034096", - "SearchIndexName": "rymmqmwa", + "SearchIndexName": "ttqelxsf", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 747533955f5d..2c06f57565fb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingDynamicDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-9c60e30989483d43b631d9a8986b8e92-7e0fa4a6f31a4c49-00", + "traceparent": "00-b703219251d1514da54e12a55783bf01-df2686bdcedf434e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6c1cd894bc0b232c5f30bdb16e8dd153", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "6c1cd894-bc0b-232c-5f30-bdb16e8dd153", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:20 GMT", - "elapsed-time": "198", + "Date": "Fri, 26 Jun 2020 06:35:16 GMT", + "elapsed-time": "93", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6c1cd894-bc0b-232c-5f30-bdb16e8dd153", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6c1cd894-bc0b-232c-5f30-bdb16e8dd153" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-8d625500de0c4c45afdc7db6f5b02f0a-9bbcd1af697cd94e-00", + "traceparent": "00-b3bdf10e6de18041bcdec88e787f928e-d377e1c4e6cf8545-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c3c78e0a3ca3a7e71527be41ab56635b", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c3c78e0a-3ca3-a7e7-1527-be41ab56635b", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:23 GMT", - "elapsed-time": "114", + "Date": "Fri, 26 Jun 2020 06:35:19 GMT", + "elapsed-time": "113", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c3c78e0a-3ca3-a7e7-1527-be41ab56635b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c3c78e0a-3ca3-a7e7-1527-be41ab56635b" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-633059268ea8754cae25e9f125596891-2c20e47e0b683d40-00", + "traceparent": "00-38ff4cadf2fa904f970a985d64b09886-58c1c96c3bbdbd4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d5efcdae8bd77c4def6c5da7f8b4a2c6", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "d5efcdae-8bd7-7c4d-ef6c-5da7f8b4a2c6", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:25 GMT", + "Date": "Fri, 26 Jun 2020 06:35:21 GMT", "elapsed-time": "72", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d5efcdae-8bd7-7c4d-ef6c-5da7f8b4a2c6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d5efcdae-8bd7-7c4d-ef6c-5da7f8b4a2c6" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,11 +24044,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -24050,8 +24056,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f0b6a605c1925761f17557e4feea7808", "x-ms-return-client-request-id": "true" @@ -24068,16 +24074,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "f0b6a605-c192-5761-f175-57e4feea7808", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:25 GMT", - "elapsed-time": "95", + "Date": "Fri, 26 Jun 2020 06:35:21 GMT", + "elapsed-time": "98", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f0b6a605-c192-5761-f175-57e4feea7808", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f0b6a605-c192-5761-f175-57e4feea7808" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28091,11 +28099,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -28103,8 +28111,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a00362ccfb9e7e7b414ad437de40ae61", "x-ms-return-client-request-id": "true" @@ -28121,16 +28129,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "a00362cc-fb9e-7e7b-414a-d437de40ae61", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:25 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:35:21 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a00362cc-fb9e-7e7b-414a-d437de40ae61", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a00362cc-fb9e-7e7b-414a-d437de40ae61" }, "ResponseBody": { "value": [ @@ -28142,15 +28152,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fwvqrhej\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027unpsfeyy\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-73bb03f2f9992a4ca1f2f619c1637ade-1d703a7d67d7b546-00", + "traceparent": "00-891a11edb5c5e8468517e996c9c54821-d1dcb883afd3da44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "043cf88472a0edc86c98e46234687e04", "x-ms-return-client-request-id": "true" @@ -28159,21 +28169,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:09:25 GMT", - "elapsed-time": "273", + "client-request-id": "043cf884-72a0-edc8-6c98-e46234687e04", + "Date": "Fri, 26 Jun 2020 06:35:22 GMT", + "elapsed-time": "257", "Expires": "-1", "Pragma": "no-cache", "request-id": "043cf884-72a0-edc8-6c98-e46234687e04", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "043cf884-72a0-edc8-6c98-e46234687e04" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1530289457", - "SearchIndexName": "fwvqrhej", + "SearchIndexName": "unpsfeyy", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 cf56a94fad95..5d01deb3d069 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-52b0e696b42b0a42b029df4b9c95595f-f045416062a33741-00", + "traceparent": "00-5fc7e6b1ca2e624e9ddf0001824d8ec3-b8801b9f2c8f6344-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f5e4b2e9b3b2bbc04351915ecd7581a4", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f5e4b2e9-b3b2-bbc0-4351-915ecd7581a4", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:02 GMT", - "elapsed-time": "205", + "Date": "Fri, 26 Jun 2020 06:32:46 GMT", + "elapsed-time": "149", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f5e4b2e9-b3b2-bbc0-4351-915ecd7581a4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f5e4b2e9-b3b2-bbc0-4351-915ecd7581a4" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-5812ab7f6a90924fa0345eea1bd7dc13-c6a974dada260d42-00", + "traceparent": "00-fe83596f9adc4144a80256833b93172e-6ee581caabe74a44-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c4a74eff0e26b572696c7711e0e91b72", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c4a74eff-0e26-b572-696c-7711e0e91b72", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:04 GMT", - "elapsed-time": "100", + "Date": "Fri, 26 Jun 2020 06:32:49 GMT", + "elapsed-time": "94", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c4a74eff-0e26-b572-696c-7711e0e91b72", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c4a74eff-0e26-b572-696c-7711e0e91b72" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-50faf971f3d6024aa2ab317c3cafd4ef-45dedb5d79138546-00", + "traceparent": "00-7608ad6a726c91469e7ffa2009095cf2-25e616dd0cd82a47-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ba6291c562f3eead2d9d4e9ff1b5ac53", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "ba6291c5-62f3-eead-2d9d-4e9ff1b5ac53", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:06 GMT", - "elapsed-time": "85", + "Date": "Fri, 26 Jun 2020 06:32:51 GMT", + "elapsed-time": "68", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ba6291c5-62f3-eead-2d9d-4e9ff1b5ac53", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ba6291c5-62f3-eead-2d9d-4e9ff1b5ac53" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,11 +24044,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -24050,8 +24056,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9c5b10458de4daaf402f8b453bafdb59", "x-ms-return-client-request-id": "true" @@ -24068,16 +24074,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "9c5b1045-8de4-daaf-402f-8b453bafdb59", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:06 GMT", - "elapsed-time": "59", + "Date": "Fri, 26 Jun 2020 06:32:51 GMT", + "elapsed-time": "57", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "9c5b1045-8de4-daaf-402f-8b453bafdb59", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9c5b1045-8de4-daaf-402f-8b453bafdb59" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28091,11 +28099,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -28103,8 +28111,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3c981e36c7129db1a1b89788c0d2c3b4", "x-ms-return-client-request-id": "true" @@ -28121,16 +28129,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "3c981e36-c712-9db1-a1b8-9788c0d2c3b4", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:06 GMT", - "elapsed-time": "10", + "Date": "Fri, 26 Jun 2020 06:32:51 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3c981e36-c712-9db1-a1b8-9788c0d2c3b4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3c981e36-c712-9db1-a1b8-9788c0d2c3b4" }, "ResponseBody": { "value": [ @@ -28142,15 +28152,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027fecfwled\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027fbkoexaj\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-cd5b047c4083a24eaee36bb23a34bc98-e2f47d17130c0d41-00", + "traceparent": "00-19364449e27e3645be153455be398dff-e8126956b0e8574a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d0cc24c07e8e388ee18879c3d667b27d", "x-ms-return-client-request-id": "true" @@ -28159,21 +28169,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:07:07 GMT", - "elapsed-time": "220", + "client-request-id": "d0cc24c0-7e8e-388e-e188-79c3d667b27d", + "Date": "Fri, 26 Jun 2020 06:32:52 GMT", + "elapsed-time": "230", "Expires": "-1", "Pragma": "no-cache", "request-id": "d0cc24c0-7e8e-388e-e188-79c3d667b27d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d0cc24c0-7e8e-388e-e188-79c3d667b27d" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "803774682", - "SearchIndexName": "fecfwled", + "SearchIndexName": "fbkoexaj", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 6019eaa72bb0..160705e11d26 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingStaticDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "43933", "Content-Type": "application/json", - "traceparent": "00-af9e3b03695c7b4f8eef20d1cba9bd52-cefc6de9a776e249-00", + "traceparent": "00-4ac9b496b78bb04788363959a6d6489b-1cc9cf4d04d1434c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "25badf7625e4e590537891d8131df88b", "x-ms-return-client-request-id": "true" @@ -4023,16 +4023,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "25badf76-25e4-e590-5378-91d8131df88b", "Content-Length": "64933", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:49 GMT", - "elapsed-time": "168", + "Date": "Fri, 26 Jun 2020 06:35:48 GMT", + "elapsed-time": "140", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "25badf76-25e4-e590-5378-91d8131df88b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "25badf76-25e4-e590-5378-91d8131df88b" }, "ResponseBody": { "value": [ @@ -10040,17 +10042,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "44606", "Content-Type": "application/json", - "traceparent": "00-f0fce56eb8f1004b9854cf8a8c33c34f-15fbc72ddfa79042-00", + "traceparent": "00-9c3d7a446c2b634bb9692166be7a80f1-d2032bbcb27e2645-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e3431df9a98ef535e5499a4b88e8c054", "x-ms-return-client-request-id": "true" @@ -14026,16 +14028,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "e3431df9-a98e-f535-e549-9a4b88e8c054", "Content-Length": "65417", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:50 GMT", - "elapsed-time": "133", + "Date": "Fri, 26 Jun 2020 06:35:51 GMT", + "elapsed-time": "114", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e3431df9-a98e-f535-e549-9a4b88e8c054", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e3431df9-a98e-f535-e549-9a4b88e8c054" }, "ResponseBody": { "value": [ @@ -19989,17 +19993,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-082538bd15bb4b4582d7e76a93cd5c5d-211a7dc91e175546-00", + "traceparent": "00-c111c73412700c41ab0c03d91ac969af-a8ed96001d0cfc4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b0ddc258791d80ee430bdf5d381ffc96", "x-ms-return-client-request-id": "true" @@ -20015,16 +20019,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "39188", + "client-request-id": "b0ddc258-791d-80ee-430b-df5d381ffc96", + "Content-Length": "39180", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:53 GMT", + "Date": "Fri, 26 Jun 2020 06:35:53 GMT", "elapsed-time": "66", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b0ddc258-791d-80ee-430b-df5d381ffc96", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b0ddc258-791d-80ee-430b-df5d381ffc96" }, "ResponseBody": { "@search.nextPageParameters": { @@ -24038,11 +24044,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -24050,8 +24056,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "06d2ee22638fccbea9c43f9a8b445c6a", "x-ms-return-client-request-id": "true" @@ -24068,16 +24074,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "38304", + "client-request-id": "06d2ee22-638f-ccbe-a9c4-3f9a8b445c6a", + "Content-Length": "38296", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:53 GMT", + "Date": "Fri, 26 Jun 2020 06:35:53 GMT", "elapsed-time": "59", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "06d2ee22-638f-ccbe-a9c4-3f9a8b445c6a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "06d2ee22-638f-ccbe-a9c4-3f9a8b445c6a" }, "ResponseBody": { "@search.nextPageParameters": { @@ -28091,11 +28099,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -28103,8 +28111,8 @@ "Content-Length": "115", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "517f3cb848407f6d2fc39f83cad7bcc6", "x-ms-return-client-request-id": "true" @@ -28121,16 +28129,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "517f3cb8-4840-7f6d-2fc3-9f83cad7bcc6", "Content-Length": "49", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:09:53 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:35:53 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "517f3cb8-4840-7f6d-2fc3-9f83cad7bcc6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "517f3cb8-4840-7f6d-2fc3-9f83cad7bcc6" }, "ResponseBody": { "value": [ @@ -28142,15 +28152,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027vbqitwwd\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027iomcapgj\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-3bd4b600fa12ca48bb944e28fa03f7dd-895e71fa885b9948-00", + "traceparent": "00-1f2e5f8c68861f4ab3cc2d2f552f96be-62e6bf9ad9fd1d40-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9929034cb915f5c5031006593953f5fe", "x-ms-return-client-request-id": "true" @@ -28159,21 +28169,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:09:53 GMT", - "elapsed-time": "224", + "client-request-id": "9929034c-b915-f5c5-0310-06593953f5fe", + "Date": "Fri, 26 Jun 2020 06:35:54 GMT", + "elapsed-time": "203", "Expires": "-1", "Pragma": "no-cache", "request-id": "9929034c-b915-f5c5-0310-06593953f5fe", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "9929034c-b915-f5c5-0310-06593953f5fe" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "1931089632", - "SearchIndexName": "vbqitwwd", + "SearchIndexName": "iomcapgj", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 8e550eefc48b..e0ed5c86044d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSize.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-099a2e6d3d89db42924821295104785a-189c1f7752751449-00", + "traceparent": "00-fa8b7c7b0ea9a0499d2283bcdcffd958-6a62f3575f4ec345-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5c63aeb286354da593d3ba4250db02c6", "x-ms-return-client-request-id": "true" @@ -651,16 +651,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5c63aeb2-8635-4da5-93d3-ba4250db02c6", "Content-Length": "10127", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:30 GMT", - "elapsed-time": "142", + "Date": "Fri, 26 Jun 2020 06:33:17 GMT", + "elapsed-time": "35", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5c63aeb2-8635-4da5-93d3-ba4250db02c6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5c63aeb2-8635-4da5-93d3-ba4250db02c6" }, "ResponseBody": { "value": [ @@ -1610,17 +1612,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-42047b7727caba4f86fb9786b047e253-b6bc11f4d81d1847-00", + "traceparent": "00-f8fc103aaaf6c44ab7a96bee42001261-197db6281ff3ff4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "008ca289d6b923f0d534bfde2ccf66e0", "x-ms-return-client-request-id": "true" @@ -1635,16 +1637,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2179", + "client-request-id": "008ca289-d6b9-23f0-d534-bfde2ccf66e0", + "Content-Length": "2171", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "19", + "Date": "Fri, 26 Jun 2020 06:33:19 GMT", + "elapsed-time": "17", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "008ca289-d6b9-23f0-d534-bfde2ccf66e0", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "008ca289-d6b9-23f0-d534-bfde2ccf66e0" }, "ResponseBody": { "@search.nextPageParameters": { @@ -1857,11 +1861,11 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -1869,8 +1873,8 @@ "Content-Length": "102", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bd4430c95eb338f41bfe5cd622be84d6", "x-ms-return-client-request-id": "true" @@ -1886,16 +1890,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2159", + "client-request-id": "bd4430c9-5eb3-38f4-1bfe-5cd622be84d6", + "Content-Length": "2151", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", + "Date": "Fri, 26 Jun 2020 06:33:19 GMT", "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bd4430c9-5eb3-38f4-1bfe-5cd622be84d6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bd4430c9-5eb3-38f4-1bfe-5cd622be84d6" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2108,11 +2114,11 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -2120,8 +2126,8 @@ "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bf55aa85a643dbf9bd408701c6c620c3", "x-ms-return-client-request-id": "true" @@ -2137,16 +2143,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2132", + "client-request-id": "bf55aa85-a643-dbf9-bd40-8701c6c620c3", + "Content-Length": "2124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "9", + "Date": "Fri, 26 Jun 2020 06:33:19 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bf55aa85-a643-dbf9-bd40-8701c6c620c3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bf55aa85-a643-dbf9-bd40-8701c6c620c3" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2359,11 +2367,11 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -2371,8 +2379,8 @@ "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2079da6d45972b12ae54e4bb7a1a0016", "x-ms-return-client-request-id": "true" @@ -2388,16 +2396,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "2079da6d-4597-2b12-ae54-e4bb7a1a0016", "Content-Length": "639", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:33:19 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "2079da6d-4597-2b12-ae54-e4bb7a1a0016", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "2079da6d-4597-2b12-ae54-e4bb7a1a0016" }, "ResponseBody": { "value": [ @@ -2473,15 +2483,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027phjwqidl\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027whnhjtkb\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-b25aeaf4d686754a9d9c1168349824c6-3379755d40a5234b-00", + "traceparent": "00-726e200cc7f7c14fa1d9c54d5a146e28-7b6871cc9f195a4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8258e9b0a67a229d3668ff73d6f37155", "x-ms-return-client-request-id": "true" @@ -2490,21 +2500,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "213", + "client-request-id": "8258e9b0-a67a-229d-3668-ff73d6f37155", + "Date": "Fri, 26 Jun 2020 06:33:19 GMT", + "elapsed-time": "235", "Expires": "-1", "Pragma": "no-cache", "request-id": "8258e9b0-a67a-229d-3668-ff73d6f37155", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "8258e9b0-a67a-229d-3668-ff73d6f37155" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "862653823", - "SearchIndexName": "phjwqidl", + "SearchIndexName": "whnhjtkb", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 5101b6b51569..5f22ea25aaa8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/PagingWithoutSizeAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "6830", "Content-Type": "application/json", - "traceparent": "00-10013573fc28b64392280f8d3605be2d-2b5f64e14b652a4f-00", + "traceparent": "00-c03df9aa1bc1db43ac84f231de8164d4-1d51ba9dbff98049-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c6da286d68e4a77510f6d12ab928fcf9", "x-ms-return-client-request-id": "true" @@ -651,16 +651,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c6da286d-68e4-a775-10f6-d12ab928fcf9", "Content-Length": "10127", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:17 GMT", - "elapsed-time": "90", + "Date": "Fri, 26 Jun 2020 06:36:19 GMT", + "elapsed-time": "37", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c6da286d-68e4-a775-10f6-d12ab928fcf9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c6da286d-68e4-a775-10f6-d12ab928fcf9" }, "ResponseBody": { "value": [ @@ -1610,17 +1612,17 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-88181e377ef6464a835c6d4964ab8cfe-718a9d9ae542a94a-00", + "traceparent": "00-f24daa6d555e734ba50a279daccab010-e30d6ce181813a4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "46f58ece534e8fc2dfdc14db394c1d57", "x-ms-return-client-request-id": "true" @@ -1635,16 +1637,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2179", + "client-request-id": "46f58ece-534e-8fc2-dfdc-14db394c1d57", + "Content-Length": "2171", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "18", + "Date": "Fri, 26 Jun 2020 06:36:21 GMT", + "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "46f58ece-534e-8fc2-dfdc-14db394c1d57", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "46f58ece-534e-8fc2-dfdc-14db394c1d57" }, "ResponseBody": { "@search.nextPageParameters": { @@ -1857,11 +1861,11 @@ "hotelId": "143" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -1869,8 +1873,8 @@ "Content-Length": "102", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d98f51e20a0d6b70c8d696f1866205b3", "x-ms-return-client-request-id": "true" @@ -1886,16 +1890,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2159", + "client-request-id": "d98f51e2-0a0d-6b70-c8d6-96f1866205b3", + "Content-Length": "2151", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", + "Date": "Fri, 26 Jun 2020 06:36:21 GMT", "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d98f51e2-0a0d-6b70-c8d6-96f1866205b3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d98f51e2-0a0d-6b70-c8d6-96f1866205b3" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2108,11 +2114,11 @@ "hotelId": "38" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -2120,8 +2126,8 @@ "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8317ee020ee41a3b654ae608549a6ec3", "x-ms-return-client-request-id": "true" @@ -2137,16 +2143,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2132", + "client-request-id": "8317ee02-0ee4-1a3b-654a-e608549a6ec3", + "Content-Length": "2124", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "38", + "Date": "Fri, 26 Jun 2020 06:36:21 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "8317ee02-0ee4-1a3b-654a-e608549a6ec3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "8317ee02-0ee4-1a3b-654a-e608549a6ec3" }, "ResponseBody": { "@search.nextPageParameters": { @@ -2359,11 +2367,11 @@ "hotelId": "83" } ], - "@odata.nextLink": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -2371,8 +2379,8 @@ "Content-Length": "103", "Content-Type": "application/json", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "674879d92299c3ec1e897e77bdd1097d", "x-ms-return-client-request-id": "true" @@ -2388,16 +2396,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "674879d9-2299-c3ec-1e89-7e77bdd1097d", "Content-Length": "639", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:36:21 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "674879d9-2299-c3ec-1e89-7e77bdd1097d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "674879d9-2299-c3ec-1e89-7e77bdd1097d" }, "ResponseBody": { "value": [ @@ -2473,15 +2483,15 @@ } }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027cxpujdnx\u0027)?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027agjmliou\u0027)?api-version=2020-06-30", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json; odata.metadata=minimal", "api-key": "Sanitized", - "traceparent": "00-6e3382cdeb278145963c120471fbf37f-e1f40db8c9728d43-00", + "traceparent": "00-f7d201bfedec014583ff460fff585835-d1db908a9f17014b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4ad860d69935d372157574c22367172e", "x-ms-return-client-request-id": "true" @@ -2490,21 +2500,23 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "209", + "client-request-id": "4ad860d6-9935-d372-1575-74c22367172e", + "Date": "Fri, 26 Jun 2020 06:36:21 GMT", + "elapsed-time": "316", "Expires": "-1", "Pragma": "no-cache", "request-id": "4ad860d6-9935-d372-1575-74c22367172e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "4ad860d6-9935-d372-1575-74c22367172e" }, "ResponseBody": [] } ], "Variables": { "RandomSeed": "2041220412", - "SearchIndexName": "cxpujdnx", + "SearchIndexName": "agjmliou", "SEARCH_ADMIN_API_KEY": "Sanitized", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a8ed355f37b1..63090fd06c27 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacets.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-35ac3e032e62924b9b5ea0f119f9912d-8732d540950ebe46-00", + "traceparent": "00-745b28c542659246bea292314ee6f96c-07403b38debe8c42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d4f7f71a4e616f30a50a994591b9bc06", "x-ms-return-client-request-id": "true" @@ -27,307 +27,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6606", + "client-request-id": "d4f7f71a-4e61-6f30-a50a-994591b9bc06", + "Content-Length": "7345", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "134", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "124", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d4f7f71a-4e61-6f30-a50a-994591b9bc06", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d4f7f71a-4e61-6f30-a50a-994591b9bc06" }, - "ResponseBody": { - "@search.facets": { - "lastRenovationDate": [ - { - "count": 5, - "to": "2000-01-01T00:00:00.000\u002B0000" - }, - { - "count": 2, - "from": "2000-01-01T00:00:00.000\u002B0000" - } - ], - "rooms/baseRate": [ - { - "count": 1, - "to": 5.0 - }, - { - "count": 1, - "from": 5.0, - "to": 8.0 - }, - { - "count": 1, - "from": 8.0, - "to": 10.0 - }, - { - "count": 0, - "from": 10.0 - } - ] - }, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.facets\u0022:{\u0022lastRenovationDate\u0022:[{\u0022count\u0022:5,\u0022to\u0022:\u00222000-01-01T00:00:00.000\u002B0000\u0022},{\u0022count\u0022:2,\u0022from\u0022:\u00222000-01-01T00:00:00.000\u002B0000\u0022}],\u0022rooms/baseRate\u0022:[{\u0022count\u0022:1,\u0022to\u0022:5.0},{\u0022count\u0022:1,\u0022from\u0022:5.0,\u0022to\u0022:8.0},{\u0022count\u0022:1,\u0022from\u0022:8.0,\u0022to\u0022:10.0},{\u0022count\u0022:0,\u0022from\u0022:10.0}]},\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "1958082955", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 ed91f106fcf3..2beeee88ee86 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RangeFacetsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-47ee3f3761ef5f4986149d229eacdeea-9fdc846b6130094f-00", + "traceparent": "00-71c8ea55d8daf242b563cb289fe59a50-bc4998ffa4e1cf4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b6098f300a3dfc7c11745ebcade6cf5d", "x-ms-return-client-request-id": "true" @@ -27,307 +27,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6606", + "client-request-id": "b6098f30-0a3d-fc7c-1174-5ebcade6cf5d", + "Content-Length": "7345", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "110", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "141", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "b6098f30-0a3d-fc7c-1174-5ebcade6cf5d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "b6098f30-0a3d-fc7c-1174-5ebcade6cf5d" }, - "ResponseBody": { - "@search.facets": { - "lastRenovationDate": [ - { - "count": 5, - "to": "2000-01-01T00:00:00.000\u002B0000" - }, - { - "count": 2, - "from": "2000-01-01T00:00:00.000\u002B0000" - } - ], - "rooms/baseRate": [ - { - "count": 1, - "to": 5.0 - }, - { - "count": 1, - "from": 5.0, - "to": 8.0 - }, - { - "count": 1, - "from": 8.0, - "to": 10.0 - }, - { - "count": 0, - "from": 10.0 - } - ] - }, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.facets\u0022:{\u0022lastRenovationDate\u0022:[{\u0022count\u0022:5,\u0022to\u0022:\u00222000-01-01T00:00:00.000\u002B0000\u0022},{\u0022count\u0022:2,\u0022from\u0022:\u00222000-01-01T00:00:00.000\u002B0000\u0022}],\u0022rooms/baseRate\u0022:[{\u0022count\u0022:1,\u0022to\u0022:5.0},{\u0022count\u0022:1,\u0022from\u0022:5.0,\u0022to\u0022:8.0},{\u0022count\u0022:1,\u0022from\u0022:8.0,\u0022to\u0022:10.0},{\u0022count\u0022:0,\u0022from\u0022:10.0}]},\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "16759243", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 2d7811695d9d..0f646ccaa860 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearch.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-c9591c4763fc7149a013a968d7f2f551-0a1b72cb31b0ea46-00", + "traceparent": "00-ee3bbfc9546dbc43a477ad434efcbb8f-a4a9f31efcf10542-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7743db6bbc42e61ea005c3fb312641d3", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "7743db6b-bc42-e61e-a005-c3fb312641d3", "Content-Length": "70", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "7743db6b-bc42-e61e-a005-c3fb312641d3", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "7743db6b-bc42-e61e-a005-c3fb312641d3" }, "ResponseBody": { "value": [ @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "867751402", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 563c04045100..804aa61152fa 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSearchAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-8f18bc2bc3850946a7e93e619b52f361-9eda6f404073e242-00", + "traceparent": "00-84136744d0c4b94db64bad81c0f7e247-403b8e4ee46d7741-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "013d1ca4d19ece4956bfa35f180b83c7", "x-ms-return-client-request-id": "true" @@ -26,16 +26,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "013d1ca4-d19e-ce49-56bf-a35f180b83c7", "Content-Length": "70", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "013d1ca4-d19e-ce49-56bf-a35f180b83c7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "013d1ca4-d19e-ce49-56bf-a35f180b83c7" }, "ResponseBody": { "value": [ @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "780300718", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 ed2e1bd583c3..8dc611ed8351 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialChars.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "144", "Content-Type": "application/json", - "traceparent": "00-a08f74ceced4e54ca71493abfd1e9423-beabe1b7b67e4949-00", + "traceparent": "00-171ed53a555d72459fae73fb73c8b7f1-80be7abae8dfb74f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "41666bf80fb2d16593377ffe9606f6a8", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "41666bf8-0fb2-d165-9337-7ffe9606f6a8", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "38", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "28", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "41666bf8-0fb2-d165-9337-7ffe9606f6a8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "41666bf8-0fb2-d165-9337-7ffe9606f6a8" }, "ResponseBody": { "value": [] @@ -43,8 +45,8 @@ ], "Variables": { "RandomSeed": "822803816", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 1497991438ec..1eb8b61c812d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "144", "Content-Type": "application/json", - "traceparent": "00-75c6013c2cefe841877527c9d6c8c5e1-31e3e31d62b62744-00", + "traceparent": "00-0652924a13ca114e8dffc472e1bfa7b7-8927037733e91546-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "32ff1956c352f9e2e40ce3c1624ffb9d", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "32ff1956-c352-f9e2-e40c-e3c1624ffb9d", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "33", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "28", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "32ff1956-c352-f9e2-e40c-e3c1624ffb9d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "32ff1956-c352-f9e2-e40c-e3c1624ffb9d" }, "ResponseBody": { "value": [] @@ -43,8 +45,8 @@ ], "Variables": { "RandomSeed": "739320000", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 de80e5597897..4e3f9142b625 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrows.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-5f6e11b7def9764eb35cf4d0f690fcc1-1677e9b9450eef43-00", + "traceparent": "00-49bdb2cf18afe74f9c4c7da26b611b1b-69d3e6f6f3dfe54e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "773a68d9fe8c603d317db3ec2c347eef", "x-ms-return-client-request-id": "true" @@ -25,17 +25,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "773a68d9-fe8c-603d-317d-b3ec2c347eef", "Content-Language": "en", "Content-Length": "148", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "32", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "35", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "773a68d9-fe8c-603d-317d-b3ec2c347eef", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "773a68d9-fe8c-603d-317d-b3ec2c347eef" }, "ResponseBody": { "error": { @@ -47,8 +49,8 @@ ], "Variables": { "RandomSeed": "1082736906", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 5b7471ce31a5..f5a8f5bdeec8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/RegexSpecialCharsUnescapedThrowsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "74", "Content-Type": "application/json", - "traceparent": "00-d1f44fc3613ea448a9383d6daedbf8c7-516029145c613645-00", + "traceparent": "00-3c458a546886524f8976bfd5111a442b-eedf1e9db3c8944d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bf8cc4a405e089e0f690d708880c3947", "x-ms-return-client-request-id": "true" @@ -25,17 +25,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bf8cc4a4-05e0-89e0-f690-d708880c3947", "Content-Language": "en", "Content-Length": "148", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", "elapsed-time": "15", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bf8cc4a4-05e0-89e0-f690-d708880c3947", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bf8cc4a4-05e0-89e0-f690-d708880c3947" }, "ResponseBody": { "error": { @@ -47,8 +49,8 @@ ], "Variables": { "RandomSeed": "1564667618", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 3f5c355d9ae0..ea4a9e4211b7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAll.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-1e13b17e77fa764baf1d2198a85b7759-98302a27035c1447-00", + "traceparent": "00-f84b28306cc6eb41ac8f906ca96942c6-6ad21e5c47ed4943-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5246c30c2fc5166062073847e24aecb4", "x-ms-return-client-request-id": "true" @@ -26,46 +26,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "396", + "client-request-id": "5246c30c-2fc5-1660-6207-3847e24aecb4", + "Content-Length": "501", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5246c30c-2fc5-1660-6207-3847e24aecb4", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5246c30c-2fc5-1660-6207-3847e24aecb4" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.30154645, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3545203,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "2122308432", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 0699d474535f..ae083120e6b4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SearchModeAllAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-9b6c092e771889419e2451194b345e62-fb6e00f0cb2f554a-00", + "traceparent": "00-7eb6e3aca1910348b331b7c222610c8b-8284fcc302189549-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e1351a5bbc8b244d32e5d5fa7d7ac951", "x-ms-return-client-request-id": "true" @@ -26,46 +26,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "396", + "client-request-id": "e1351a5b-bc8b-244d-32e5-d5fa7d7ac951", + "Content-Length": "501", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "34", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "e1351a5b-bc8b-244d-32e5-d5fa7d7ac951", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "e1351a5b-bc8b-244d-32e5-d5fa7d7ac951" }, - "ResponseBody": { - "value": [ - { - "@search.score": 0.30154645, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:4.3545203,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "1552992714", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 15808cb2ff1b..f25448dc4979 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "155", "Content-Type": "application/json", - "traceparent": "00-3a7a2576d5795e4db25f0e2c5daeba5e-87b4b4bb91959f4f-00", + "traceparent": "00-ace21dcdca4f9247a7f49abcbf1ce032-72cc94476007ea4c-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "976c7c35862a4db0638a786eaa22c282", "x-ms-return-client-request-id": "true" @@ -26,28 +26,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", + "client-request-id": "976c7c35-862a-4db0-638a-786eaa22c282", + "Content-Length": "259", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:32 GMT", - "elapsed-time": "68", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "976c7c35-862a-4db0-638a-786eaa22c282", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "976c7c35-862a-4db0-638a-786eaa22c282" }, "ResponseBody": { "value": [ { - "@search.score": 1.1593354, + "@search.score": 3.1617427, "hotelName": "Fancy Stay", "rating": 5, "address": null, "rooms": [] }, { - "@search.score": 0.17835927, + "@search.score": 1.1383567, "hotelName": "Secret Point Motel", "rating": 4, "address": { @@ -68,8 +70,8 @@ ], "Variables": { "RandomSeed": "28556768", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 57d3826153f2..62172287d79e 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SelectedFieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "155", "Content-Type": "application/json", - "traceparent": "00-cd32df482eeb714698af271a7c2f1177-60fe065a8dd26b43-00", + "traceparent": "00-e82ac2dc464c2f4e8ae6eb24e4df8112-24bfadd640145a49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3f1bb1dd35221989dc01b4801da37148", "x-ms-return-client-request-id": "true" @@ -26,28 +26,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "260", + "client-request-id": "3f1bb1dd-3522-1989-dc01-b4801da37148", + "Content-Length": "259", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3f1bb1dd-3522-1989-dc01-b4801da37148", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3f1bb1dd-3522-1989-dc01-b4801da37148" }, "ResponseBody": { "value": [ { - "@search.score": 1.1593354, + "@search.score": 3.1617427, "hotelName": "Fancy Stay", "rating": 5, "address": null, "rooms": [] }, { - "@search.score": 0.17835927, + "@search.score": 1.1383567, "hotelName": "Secret Point Motel", "rating": 4, "address": { @@ -68,8 +70,8 @@ ], "Variables": { "RandomSeed": "1278407184", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 1ee122a1173e..521df3a7cbe0 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPaging.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-eafdf41906828147af8178b56129fe4c-96e8060f9e48af40-00", + "traceparent": "00-25fa3301b1ffd347a57f30b2fb72ff16-d9ae07cd4d2bba4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "943874a0a80aa2a6a01accb8f84c3db7", "x-ms-return-client-request-id": "true" @@ -27,125 +27,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2567", + "client-request-id": "943874a0-a80a-a2a6-a01a-ccb8f84c3db7", + "Content-Length": "2883", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:33 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "943874a0-a80a-a2a6-a01a-ccb8f84c3db7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "943874a0-a80a-a2a6-a01a-ccb8f84c3db7" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-51fad49b4fdbbf4c8e63f3df441000c4-2523e956de13c148-00", + "traceparent": "00-b222fb24565f2f40aeff4264cdd31f3e-2bbd785f4ed4f247-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "96ac0b04cf88a5af76be6cb10318eb36", "x-ms-return-client-request-id": "true" @@ -161,84 +69,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1010", + "client-request-id": "96ac0b04-cf88-a5af-76be-6cb10318eb36", + "Content-Length": "1328", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:33 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "96ac0b04-cf88-a5af-76be-6cb10318eb36", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "96ac0b04-cf88-a5af-76be-6cb10318eb36" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "777577952", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 89973e204ad4..4b94945adbcb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/SizeAndSkipForPagingAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-04c2805640cb814088d58cd7c0764019-4c2beaa477da0c42-00", + "traceparent": "00-edd14c56855d2446b7b1b7abe15b03c4-73b41fbfb7a62d45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3cf063fa37842845712502311e7afb0b", "x-ms-return-client-request-id": "true" @@ -27,125 +27,33 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2567", + "client-request-id": "3cf063fa-3784-2845-7125-02311e7afb0b", + "Content-Length": "2883", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:19 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3cf063fa-3784-2845-7125-02311e7afb0b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3cf063fa-3784-2845-7125-02311e7afb0b" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" }, { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-b530bc28913574408f6fc63c18c9399f-fb8b4e982d728d4b-00", + "traceparent": "00-82dd66d2e35c954db229b2b9b2e65c54-aa2c16d5bb2d6e46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "95d80ea638dce1209f1a7d2135ce0bdb", "x-ms-return-client-request-id": "true" @@ -161,84 +69,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1010", + "client-request-id": "95d80ea6-38dc-e120-9f1a-7d2135ce0bdb", + "Content-Length": "1328", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "38", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "95d80ea6-38dc-e120-9f1a-7d2135ce0bdb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "95d80ea6-38dc-e120-9f1a-7d2135ce0bdb" }, - "ResponseBody": { - "value": [ - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - } - ] - } + "ResponseBody": "{\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]}]}" } ], "Variables": { "RandomSeed": "171018898", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentPagingAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentPagingAsync.json index 56a50fa3430b..3d7ee857d9ec 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentPagingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentPagingAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -10040,7 +10040,7 @@ } }, { - "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.index?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.index?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -19989,7 +19989,7 @@ } }, { - "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -24038,11 +24038,11 @@ "hotelId": "1899" } ], - "@odata.nextLink": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -28091,11 +28091,11 @@ "hotelId": "998" } ], - "@odata.nextLink": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2019-05-06-Preview" + "@odata.nextLink": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2020-06-30" } }, { - "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-mftdwjov.search.windows.net/indexes(\u0027swvowqlt\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "api-key": "Sanitized", @@ -28147,4 +28147,4 @@ "SearchIndexName": "swvowqlt", "SearchServiceName": "azs-net-mftdwjov" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocuments.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocuments.json index 5a3ed2330e38..b36da0545591 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "49", "Content-Type": "application/json", - "traceparent": "00-433b687f4c13de42a6c89f3275caa2e5-71d52fabcb4cb945-00", + "traceparent": "00-3a679ea56f0ea44797c0a927c50384f1-ce2e9eaff2c6af4f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "466c481f1cabba59864cce05b755caec", "x-ms-return-client-request-id": "true" @@ -27,8 +27,8 @@ "client-request-id": "466c481f-1cab-ba59-864c-ce05b755caec", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:41 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,8 +42,8 @@ ], "Variables": { "RandomSeed": "661409870", - "SearchIndexName": "qphdytqm", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsAsync.json index 6e76f706ffce..a7a57f6f0622 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027qphdytqm\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "49", "Content-Type": "application/json", - "traceparent": "00-7b65eec0e6155946898c9ee60d042371-5db428eac7f45a40-00", + "traceparent": "00-1da471b8ff858e4c80e52007947dd275-c9108aee732eff4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200605.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.18363 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fc8b9f516b4a8c6008b5bcb7ba1b7bdb", "x-ms-return-client-request-id": "true" @@ -27,8 +27,8 @@ "client-request-id": "fc8b9f51-6b4a-8c60-08b5-bcb7ba1b7bdb", "Content-Length": "7076", "Content-Type": "application/json; odata.metadata=none", - "Date": "Sat, 06 Jun 2020 02:01:42 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", @@ -42,8 +42,8 @@ ], "Variables": { "RandomSeed": "1422612215", - "SearchIndexName": "qphdytqm", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-teglaza" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ No newline at end of file diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializer.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializer.json index f6f0e83e0626..5cf4004b2c43 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializer.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializer.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pybitseg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pybitseg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -47,4 +47,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-teglaza" } -} \ No newline at end of file +} diff --git a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializerAsync.json b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializerAsync.json index eb1cb63cbfc3..3c433dfac537 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializerAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/StaticDocumentsWithCustomSerializerAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pybitseg\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-teglaza.search.windows.net/indexes(\u0027pybitseg\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", @@ -46,4 +46,4 @@ "SEARCH_QUERY_API_KEY": "Sanitized", "SEARCH_SERVICE_NAME": "azs-net-teglaza" } -} \ 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 905abe3a3e76..c7ff9aac5d61 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformed.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "88", "Content-Type": "application/json", - "traceparent": "00-7f10253bbeeaf74a9abfede8dd60618f-064846eae4985048-00", + "traceparent": "00-1e51118dc261ed4c97e630eaf796ca2e-619715278d36da4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5ce2f2d871868dbadfdf3c78e9ae7044", "x-ms-return-client-request-id": "true" @@ -25,17 +25,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5ce2f2d8-7186-8dba-dfdf-3c78e9ae7044", "Content-Language": "en", "Content-Length": "141", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:33 GMT", - "elapsed-time": "2", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", + "elapsed-time": "4", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5ce2f2d8-7186-8dba-dfdf-3c78e9ae7044", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5ce2f2d8-7186-8dba-dfdf-3c78e9ae7044" }, "ResponseBody": { "error": { @@ -47,8 +49,8 @@ ], "Variables": { "RandomSeed": "455367892", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e32dcb9e25e3..69e5830367ae 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ThrowsWhenRequestIsMalformedAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "88", "Content-Type": "application/json", - "traceparent": "00-cc66baa04372ec47926b1ffcd1eebaaa-7d7267abee33dd4b-00", + "traceparent": "00-10cff4162038bd4187d70a803e45f7a7-e7475af0eb439c45-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f18dbf637d46a3edd29262677b02b0cd", "x-ms-return-client-request-id": "true" @@ -25,17 +25,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f18dbf63-7d46-a3ed-d292-62677b02b0cd", "Content-Language": "en", "Content-Length": "141", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "2", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f18dbf63-7d46-a3ed-d292-62677b02b0cd", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f18dbf63-7d46-a3ed-d292-62677b02b0cd" }, "ResponseBody": { "error": { @@ -47,8 +49,8 @@ ], "Variables": { "RandomSeed": "1660709923", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 278bd489c73e..021553651289 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCount.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-dbd4016665127a40948689d39de2150b-4f508dca11078743-00", + "traceparent": "00-ba49f52758bbbc4abca49719c68d5196-a9f7e7de47df6f41-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ee0ca512248c0de779599998022281eb", "x-ms-return-client-request-id": "true" @@ -25,276 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6355", + "client-request-id": "ee0ca512-248c-0de7-7959-9998022281eb", + "Content-Length": "7094", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:33 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ee0ca512-248c-0de7-7959-9998022281eb", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ee0ca512-248c-0de7-7959-9998022281eb" }, - "ResponseBody": { - "@odata.count": 10, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@odata.count\u0022:10,\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "942192075", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 96816d63fa51..e5ae36b6c26f 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/TotalCountAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "62", "Content-Type": "application/json", - "traceparent": "00-c99aa28c15190d4698cc3ca60980c84c-e9d6f9012237c146-00", + "traceparent": "00-fb7667e6162053418082c4d91b451dd7-f58d3163ca749146-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ec36c2156b803da08be8e3b0e36b5e03", "x-ms-return-client-request-id": "true" @@ -25,276 +25,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6355", + "client-request-id": "ec36c215-6b80-3da0-8be8-e3b0e36b5e03", + "Content-Length": "7094", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ec36c215-6b80-3da0-8be8-e3b0e36b5e03", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ec36c215-6b80-3da0-8be8-e3b0e36b5e03" }, - "ResponseBody": { - "@odata.count": 10, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@odata.count\u0022:10,\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "1386788363", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 da29194b95f0..d2b4221656e2 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacets.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "197", "Content-Type": "application/json", - "traceparent": "00-a1362fc1a1196f40909566cffdc01ad5-edd9fa680e25e84f-00", + "traceparent": "00-e56a3a019dfb844da29f9fd7b3310d2a-6cfc51220149b140-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "965c538fc5411c6fdd487a92d9b9906e", "x-ms-return-client-request-id": "true" @@ -31,397 +31,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7321", + "client-request-id": "965c538f-c541-1c6f-dd48-7a92d9b9906e", + "Content-Length": "8060", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:07:33 GMT", + "Date": "Fri, 26 Jun 2020 06:33:22 GMT", "elapsed-time": "16", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "965c538f-c541-1c6f-dd48-7a92d9b9906e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "965c538f-c541-1c6f-dd48-7a92d9b9906e" }, - "ResponseBody": { - "@search.facets": { - "lastRenovationDate": [ - { - "count": 1, - "value": "1970-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "1982-01-01T00:00:00Z" - }, - { - "count": 2, - "value": "1995-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "1999-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "2010-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "2012-01-01T00:00:00Z" - } - ], - "smokingAllowed": [ - { - "count": 4, - "value": false - }, - { - "count": 3, - "value": true - } - ], - "rooms/baseRate": [ - { - "count": 1, - "value": 2.44 - }, - { - "count": 1, - "value": 7.69 - }, - { - "count": 1, - "value": 8.09 - }, - { - "count": 1, - "value": 9.69 - } - ], - "rating": [ - { - "count": 1, - "value": 5 - }, - { - "count": 4, - "value": 4 - } - ], - "tags": [ - { - "count": 1, - "value": "24-hour front desk service" - }, - { - "count": 1, - "value": "air conditioning" - }, - { - "count": 4, - "value": "budget" - }, - { - "count": 1, - "value": "coffee in lobby" - }, - { - "count": 2, - "value": "concierge" - }, - { - "count": 1, - "value": "motel" - }, - { - "count": 2, - "value": "pool" - }, - { - "count": 1, - "value": "restaurant" - }, - { - "count": 1, - "value": "view" - }, - { - "count": 4, - "value": "wifi" - } - ], - "category": [ - { - "count": 5, - "value": "Budget" - }, - { - "count": 1, - "value": "Boutique" - }, - { - "count": 1, - "value": "Luxury" - } - ] - }, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.facets\u0022:{\u0022lastRenovationDate\u0022:[{\u0022count\u0022:1,\u0022value\u0022:\u00221970-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00221982-01-01T00:00:00Z\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u00221995-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00221999-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00222010-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00222012-01-01T00:00:00Z\u0022}],\u0022smokingAllowed\u0022:[{\u0022count\u0022:4,\u0022value\u0022:false},{\u0022count\u0022:3,\u0022value\u0022:true}],\u0022rooms/baseRate\u0022:[{\u0022count\u0022:1,\u0022value\u0022:2.44},{\u0022count\u0022:1,\u0022value\u0022:7.69},{\u0022count\u0022:1,\u0022value\u0022:8.09},{\u0022count\u0022:1,\u0022value\u0022:9.69}],\u0022rating\u0022:[{\u0022count\u0022:1,\u0022value\u0022:5},{\u0022count\u0022:4,\u0022value\u0022:4}],\u0022tags\u0022:[{\u0022count\u0022:1,\u0022value\u0022:\u002224-hour front desk service\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022air conditioning\u0022},{\u0022count\u0022:4,\u0022value\u0022:\u0022budget\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022coffee in lobby\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u0022concierge\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022motel\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u0022pool\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022restaurant\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022view\u0022},{\u0022count\u0022:4,\u0022value\u0022:\u0022wifi\u0022}],\u0022category\u0022:[{\u0022count\u0022:5,\u0022value\u0022:\u0022Budget\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022Boutique\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022Luxury\u0022}]},\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "110101261", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 43dabda004a4..ab8cbf14ec0c 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SearchTests/ValueFacetsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.search?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.search?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "197", "Content-Type": "application/json", - "traceparent": "00-cef6261f35986942a7d720950c508091-a4711ae4f1caf64d-00", + "traceparent": "00-bdec3006f481ea479c2705141ec9c455-b3fb831c4e36db4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "16adb1f6d36bac3c651ff0daca82a1d8", "x-ms-return-client-request-id": "true" @@ -31,397 +31,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7321", + "client-request-id": "16adb1f6-d36b-ac3c-651f-f0daca82a1d8", + "Content-Length": "8060", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "16adb1f6-d36b-ac3c-651f-f0daca82a1d8", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "16adb1f6-d36b-ac3c-651f-f0daca82a1d8" }, - "ResponseBody": { - "@search.facets": { - "lastRenovationDate": [ - { - "count": 1, - "value": "1970-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "1982-01-01T00:00:00Z" - }, - { - "count": 2, - "value": "1995-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "1999-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "2010-01-01T00:00:00Z" - }, - { - "count": 1, - "value": "2012-01-01T00:00:00Z" - } - ], - "smokingAllowed": [ - { - "count": 4, - "value": false - }, - { - "count": 3, - "value": true - } - ], - "rooms/baseRate": [ - { - "count": 1, - "value": 2.44 - }, - { - "count": 1, - "value": 7.69 - }, - { - "count": 1, - "value": 8.09 - }, - { - "count": 1, - "value": 9.69 - } - ], - "rating": [ - { - "count": 1, - "value": 5 - }, - { - "count": 4, - "value": 4 - } - ], - "tags": [ - { - "count": 1, - "value": "24-hour front desk service" - }, - { - "count": 1, - "value": "air conditioning" - }, - { - "count": 4, - "value": "budget" - }, - { - "count": 1, - "value": "coffee in lobby" - }, - { - "count": 2, - "value": "concierge" - }, - { - "count": 1, - "value": "motel" - }, - { - "count": 2, - "value": "pool" - }, - { - "count": 1, - "value": "restaurant" - }, - { - "count": 1, - "value": "view" - }, - { - "count": 4, - "value": "wifi" - } - ], - "category": [ - { - "count": 5, - "value": "Budget" - }, - { - "count": 1, - "value": "Boutique" - }, - { - "count": 1, - "value": "Luxury" - } - ] - }, - "value": [ - { - "@search.score": 1.0, - "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.", - "descriptionFr": "Meilleur h\u00F4tel en ville si vous aimez les h\u00F4tels de luxe. Ils ont une magnifique piscine \u00E0 d\u00E9bordement, un spa et un concierge tr\u00E8s utile. L\u0027emplacement est parfait \u2013 en plein centre, \u00E0 proximit\u00E9 de toutes les attractions touristiques. Nous recommandons fortement cet h\u00F4tel.", - "category": "Luxury", - "tags": [ - "pool", - "view", - "wifi", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": false, - "lastRenovationDate": "2010-06-27T00:00:00Z", - "rating": 5, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "2", - "hotelName": "Roach Motel", - "description": "Cheapest hotel in town. Infact, a motel.", - "descriptionFr": "H\u00F4tel le moins cher en ville. Infact, un motel.", - "category": "Budget", - "tags": [ - "motel", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": true, - "lastRenovationDate": "1982-04-28T00:00:00Z", - "rating": 1, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "3", - "hotelName": "EconoStay", - "description": "Very popular hotel in town", - "descriptionFr": "H\u00F4tel le plus populaire en ville", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "4", - "hotelName": "Express Rooms", - "description": "Pretty good hotel", - "descriptionFr": "Assez bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "1995-07-01T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "5", - "hotelName": "Comfy Place", - "description": "Another good hotel", - "descriptionFr": "Un autre bon h\u00F4tel", - "category": "Budget", - "tags": [ - "wifi", - "budget" - ], - "parkingIncluded": true, - "smokingAllowed": false, - "lastRenovationDate": "2012-08-12T00:00:00Z", - "rating": 4, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "6", - "hotelName": null, - "description": "Surprisingly expensive. Model suites have an ocean-view.", - "descriptionFr": null, - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "7", - "hotelName": "Modern Stay", - "description": "Modern architecture, very polite staff and very clean. Also very affordable.", - "descriptionFr": "Architecture moderne, personnel poli et tr\u00E8s propre. Aussi tr\u00E8s abordable.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "8", - "hotelName": null, - "description": "Has some road noise and is next to the very police station. Bathrooms had morel coverings.", - "descriptionFr": "Il y a du bruit de la route et se trouve \u00E0 c\u00F4t\u00E9 de la station de police. Les salles de bain avaient des rev\u00EAtements de morilles.", - "category": null, - "tags": [], - "parkingIncluded": null, - "smokingAllowed": null, - "lastRenovationDate": null, - "rating": null, - "location": null, - "address": null, - "rooms": [] - }, - { - "@search.score": 1.0, - "hotelId": "9", - "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.", - "descriptionFr": "L\u0027h\u00F4tel est id\u00E9alement situ\u00E9 sur la principale art\u00E8re commerciale de la ville en plein c\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\u00E9r\u00EAt qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\u00E9rique.", - "category": "Boutique", - "tags": [ - "pool", - "air conditioning", - "concierge" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1970-01-18T05:00:00Z", - "rating": 4, - "location": null, - "address": { - "streetAddress": "677 5th Ave", - "city": "New York", - "stateProvince": "NY", - "country": "USA", - "postalCode": "10022" - }, - "rooms": [ - { - "description": "Budget Room, 1 Queen Bed (Cityside)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (c\u00F4t\u00E9 ville)", - "type": "Budget Room", - "baseRate": 9.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd" - ] - }, - { - "description": "Budget Room, 1 King Bed (Mountain View)", - "descriptionFr": "Chambre \u00C9conomique, 1 tr\u00E8s grand lit (Mountain View)", - "type": "Budget Room", - "baseRate": 8.09, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "vcr/dvd", - "jacuzzi tub" - ] - } - ] - }, - { - "@search.score": 1.0, - "hotelId": "10", - "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.", - "descriptionFr": "\u00C9conomisez jusqu\u0027\u00E0 50% sur les h\u00F4tels traditionnels. WiFi gratuit, tr\u00E8s bien situ\u00E9 pr\u00E8s du centre-ville, cuisine compl\u00E8te, laveuse \u0026 s\u00E9cheuse, support 24/7, bowling, centre de fitness et plus encore.", - "category": "Budget", - "tags": [ - "24-hour front desk service", - "coffee in lobby", - "restaurant" - ], - "parkingIncluded": false, - "smokingAllowed": true, - "lastRenovationDate": "1999-09-06T00:00:00Z", - "rating": 3, - "location": null, - "address": { - "streetAddress": "6910 Fayetteville Rd", - "city": "Durham", - "stateProvince": "NC", - "country": "USA", - "postalCode": "27713" - }, - "rooms": [ - { - "description": "Suite, 1 King Bed (Amenities)", - "descriptionFr": "Suite, 1 tr\u00E8s grand lit (Services)", - "type": "Suite", - "baseRate": 2.44, - "bedOptions": "1 King Bed", - "sleepsCount": 2, - "smokingAllowed": true, - "tags": [ - "coffee maker" - ] - }, - { - "description": "Budget Room, 1 Queen Bed (Amenities)", - "descriptionFr": "Chambre \u00C9conomique, 1 grand lit (Services)", - "type": "Budget Room", - "baseRate": 7.69, - "bedOptions": "1 Queen Bed", - "sleepsCount": 2, - "smokingAllowed": false, - "tags": [ - "coffee maker" - ] - } - ] - } - ] - } + "ResponseBody": "{\u0022@search.facets\u0022:{\u0022lastRenovationDate\u0022:[{\u0022count\u0022:1,\u0022value\u0022:\u00221970-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00221982-01-01T00:00:00Z\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u00221995-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00221999-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00222010-01-01T00:00:00Z\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u00222012-01-01T00:00:00Z\u0022}],\u0022smokingAllowed\u0022:[{\u0022count\u0022:4,\u0022value\u0022:false},{\u0022count\u0022:3,\u0022value\u0022:true}],\u0022rooms/baseRate\u0022:[{\u0022count\u0022:1,\u0022value\u0022:2.44},{\u0022count\u0022:1,\u0022value\u0022:7.69},{\u0022count\u0022:1,\u0022value\u0022:8.09},{\u0022count\u0022:1,\u0022value\u0022:9.69}],\u0022rating\u0022:[{\u0022count\u0022:1,\u0022value\u0022:5},{\u0022count\u0022:4,\u0022value\u0022:4}],\u0022tags\u0022:[{\u0022count\u0022:1,\u0022value\u0022:\u002224-hour front desk service\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022air conditioning\u0022},{\u0022count\u0022:4,\u0022value\u0022:\u0022budget\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022coffee in lobby\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u0022concierge\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022motel\u0022},{\u0022count\u0022:2,\u0022value\u0022:\u0022pool\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022restaurant\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022view\u0022},{\u0022count\u0022:4,\u0022value\u0022:\u0022wifi\u0022}],\u0022category\u0022:[{\u0022count\u0022:5,\u0022value\u0022:\u0022Budget\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022Boutique\u0022},{\u0022count\u0022:1,\u0022value\u0022:\u0022Luxury\u0022}]},\u0022value\u0022:[{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00221\u0022,\u0022hotelName\u0022:\u0022Fancy Stay\u0022,\u0022description\u0022:\u0022Best 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.\u0022,\u0022descriptionFr\u0022:\u0022Meilleur h\\u00f4tel en ville si vous aimez les h\\u00f4tels de luxe. Ils ont une magnifique piscine \\u00e0 d\\u00e9bordement, un spa et un concierge tr\\u00e8s utile. L\u0027emplacement est parfait \\u2013 en plein centre, \\u00e0 proximit\\u00e9 de toutes les attractions touristiques. Nous recommandons fortement cet h\\u00f4tel.\u0022,\u0022category\u0022:\u0022Luxury\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022view\u0022,\u0022wifi\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222010-06-27T00:00:00Z\u0022,\u0022rating\u0022:5,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,47.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00222\u0022,\u0022hotelName\u0022:\u0022Roach Motel\u0022,\u0022description\u0022:\u0022Cheapest hotel in town. Infact, a motel.\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le moins cher en ville. Infact, un motel.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022motel\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221982-04-28T00:00:00Z\u0022,\u0022rating\u0022:1,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,49.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00223\u0022,\u0022hotelName\u0022:\u0022EconoStay\u0022,\u0022description\u0022:\u0022Very popular hotel in town\u0022,\u0022descriptionFr\u0022:\u0022H\\u00f4tel le plus populaire en ville\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,46.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00224\u0022,\u0022hotelName\u0022:\u0022Express Rooms\u0022,\u0022description\u0022:\u0022Pretty good hotel\u0022,\u0022descriptionFr\u0022:\u0022Assez bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00221995-07-01T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00225\u0022,\u0022hotelName\u0022:\u0022Comfy Place\u0022,\u0022description\u0022:\u0022Another good hotel\u0022,\u0022descriptionFr\u0022:\u0022Un autre bon h\\u00f4tel\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u0022wifi\u0022,\u0022budget\u0022],\u0022parkingIncluded\u0022:true,\u0022smokingAllowed\u0022:false,\u0022lastRenovationDate\u0022:\u00222012-08-12T00:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-122.131577,48.678581],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00226\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Surprisingly expensive. Model suites have an ocean-view.\u0022,\u0022descriptionFr\u0022:null,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00227\u0022,\u0022hotelName\u0022:\u0022Modern Stay\u0022,\u0022description\u0022:\u0022Modern architecture, very polite staff and very clean. Also very affordable.\u0022,\u0022descriptionFr\u0022:\u0022Architecture moderne, personnel poli et tr\\u00e8s propre. Aussi tr\\u00e8s abordable.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00228\u0022,\u0022hotelName\u0022:null,\u0022description\u0022:\u0022Has some road noise and is next to the very police station. Bathrooms had morel coverings.\u0022,\u0022descriptionFr\u0022:\u0022Il y a du bruit de la route et se trouve \\u00e0 c\\u00f4t\\u00e9 de la station de police. Les salles de bain avaient des rev\\u00eatements de morilles.\u0022,\u0022category\u0022:null,\u0022tags\u0022:[],\u0022parkingIncluded\u0022:null,\u0022smokingAllowed\u0022:null,\u0022lastRenovationDate\u0022:null,\u0022rating\u0022:null,\u0022location\u0022:null,\u0022address\u0022:null,\u0022rooms\u0022:[]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u00229\u0022,\u0022hotelName\u0022:\u0022Secret Point Motel\u0022,\u0022description\u0022:\u0022The 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.\u0022,\u0022descriptionFr\u0022:\u0022L\u0027h\\u00f4tel est id\\u00e9alement situ\\u00e9 sur la principale art\\u00e8re commerciale de la ville en plein c\\u0153ur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d\u0027autres lieux d\u0027int\\u00e9r\\u00eat qui font de New York l\u0027une des villes les plus attractives et cosmopolites de l\u0027Am\\u00e9rique.\u0022,\u0022category\u0022:\u0022Boutique\u0022,\u0022tags\u0022:[\u0022pool\u0022,\u0022air conditioning\u0022,\u0022concierge\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221970-01-18T05:00:00Z\u0022,\u0022rating\u0022:4,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-73.975403,40.760586],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u0022677 5th Ave\u0022,\u0022city\u0022:\u0022New York\u0022,\u0022stateProvince\u0022:\u0022NY\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002210022\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Cityside)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (c\\u00f4t\\u00e9 ville)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:9.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 King Bed (Mountain View)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 tr\\u00e8s grand lit (Mountain View)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:8.09,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022vcr/dvd\u0022,\u0022jacuzzi tub\u0022]}]},{\u0022@search.score\u0022:1.0,\u0022hotelId\u0022:\u002210\u0022,\u0022hotelName\u0022:\u0022Countryside Hotel\u0022,\u0022description\u0022:\u0022Save 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.\u0022,\u0022descriptionFr\u0022:\u0022\\u00c9conomisez jusqu\u0027\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse \u0026 s\\u00e9cheuse, support 24/7, bowling, centre de fitness et plus encore.\u0022,\u0022category\u0022:\u0022Budget\u0022,\u0022tags\u0022:[\u002224-hour front desk service\u0022,\u0022coffee in lobby\u0022,\u0022restaurant\u0022],\u0022parkingIncluded\u0022:false,\u0022smokingAllowed\u0022:true,\u0022lastRenovationDate\u0022:\u00221999-09-06T00:00:00Z\u0022,\u0022rating\u0022:3,\u0022location\u0022:{\u0022type\u0022:\u0022Point\u0022,\u0022coordinates\u0022:[-78.940483,35.90416],\u0022crs\u0022:{\u0022type\u0022:\u0022name\u0022,\u0022properties\u0022:{\u0022name\u0022:\u0022EPSG:4326\u0022}}},\u0022address\u0022:{\u0022streetAddress\u0022:\u00226910 Fayetteville Rd\u0022,\u0022city\u0022:\u0022Durham\u0022,\u0022stateProvince\u0022:\u0022NC\u0022,\u0022country\u0022:\u0022USA\u0022,\u0022postalCode\u0022:\u002227713\u0022},\u0022rooms\u0022:[{\u0022description\u0022:\u0022Suite, 1 King Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Suite, 1 tr\\u00e8s grand lit (Services)\u0022,\u0022type\u0022:\u0022Suite\u0022,\u0022baseRate\u0022:2.44,\u0022bedOptions\u0022:\u00221 King Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:true,\u0022tags\u0022:[\u0022coffee maker\u0022]},{\u0022description\u0022:\u0022Budget Room, 1 Queen Bed (Amenities)\u0022,\u0022descriptionFr\u0022:\u0022Chambre \\u00c9conomique, 1 grand lit (Services)\u0022,\u0022type\u0022:\u0022Budget Room\u0022,\u0022baseRate\u0022:7.69,\u0022bedOptions\u0022:\u00221 Queen Bed\u0022,\u0022sleepsCount\u0022:2,\u0022smokingAllowed\u0022:false,\u0022tags\u0022:[\u0022coffee maker\u0022]}]}]}" } ], "Variables": { "RandomSeed": "316706226", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 305a7c8be9c2..a4864176abae 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggest.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-f474e7cbfad51e49ad2cb85d3da9336e-a8137c8bab436d40-00", + "traceparent": "00-100da23e7fd8444d92205457f72ceb0c-a97e25eda553a849-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "41ddfe30e0034827c87719e46d01721a", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "41ddfe30-e003-4827-c877-19e46d01721a", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "32", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "41ddfe30-e003-4827-c877-19e46d01721a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "41ddfe30-e003-4827-c877-19e46d01721a" }, "ResponseBody": { "value": [] @@ -42,8 +44,8 @@ ], "Variables": { "RandomSeed": "1436621410", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 5327d06a47f6..43188dafc729 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ExcludeFieldsFromSuggestAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-1b54186832ea0a4faf480d5bfd1e9e07-b8f34bae0da46a46-00", + "traceparent": "00-9500319d2f484244a94bca5b14c0e9c0-6155ddc25c731d42-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c86e99798766c4b9c0561853279d9329", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c86e9979-8766-c4b9-c056-1853279d9329", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c86e9979-8766-c4b9-c056-1853279d9329", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c86e9979-8766-c4b9-c056-1853279d9329" }, "ResponseBody": { "value": [] @@ -42,8 +44,8 @@ ], "Variables": { "RandomSeed": "121381126", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 4c1389d1470c..4d9dfdcf90c7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Filter.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-dcee205a279de74eb137eece89f0da2c-73bac3fadd723444-00", + "traceparent": "00-5755a937fec1974e80d373ff8d8d5715-e35e7930e5969f48-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "30514a78ff01748af3ca8bcba92a7563", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "30514a78-ff01-748a-f3ca-8bcba92a7563", "Content-Length": "330", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "13", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "30514a78-ff01-748a-f3ca-8bcba92a7563", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "30514a78-ff01-748a-f3ca-8bcba92a7563" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "110296479", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 19c06c58da11..6e6e616d3bdb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FilterAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "129", "Content-Type": "application/json", - "traceparent": "00-4459aafd21b9e345a3df64535d736b6b-972281f76eba7f42-00", + "traceparent": "00-d0779f0b18376e429c6e8c6d85dd19f6-b1cbc6656f2dc043-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5ec719d50b83670287b542650f09d244", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5ec719d5-0b83-6702-87b5-42650f09d244", "Content-Length": "330", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5ec719d5-0b83-6702-87b5-42650f09d244", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5ec719d5-0b83-6702-87b5-42650f09d244" }, "ResponseBody": { "value": [ @@ -52,8 +54,8 @@ ], "Variables": { "RandomSeed": "1932974835", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 7c7e3bdbfcb4..4eb624e40ac1 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/Fuzzy.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "52", "Content-Type": "application/json", - "traceparent": "00-b89f09fa66c75f4db59d98788d6dc07c-c3ea2e9f0dbd5444-00", + "traceparent": "00-69f27d21ca234247ad8bcee1a871da11-d85c6c1609451b43-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6f210e6706adc4673713dcb4686ee1a1", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "300", + "client-request-id": "6f210e67-06ad-c467-3713-dcb4686ee1a1", + "Content-Length": "493", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", "elapsed-time": "10", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "6f210e67-06ad-c467-3713-dcb4686ee1a1", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "6f210e67-06ad-c467-3713-dcb4686ee1a1" }, "ResponseBody": { "value": [ @@ -50,12 +52,12 @@ "hotelId": "5" }, { - "@search.text": "Very popular hotel in town", - "hotelId": "3" + "@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.", + "hotelId": "1" }, { - "@search.text": "Cheapest hotel in town. Infact, a motel.", - "hotelId": "2" + "@search.text": "Very popular hotel in town", + "hotelId": "3" } ] } @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "171521149", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 6ac9fdd2eefa..a6fdc569d7d8 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "52", "Content-Type": "application/json", - "traceparent": "00-12e760d1c721ec4b96c2a4db9ded86a3-d9f206383bcf5343-00", + "traceparent": "00-806840c7e95c034b8d5a6fd2e1b1bf2c-50d6a6c2c4524f4e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "005f5d74b17ed29f1f448cd542419d2f", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "300", + "client-request-id": "005f5d74-b17e-d29f-1f44-8cd542419d2f", + "Content-Length": "493", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "005f5d74-b17e-d29f-1f44-8cd542419d2f", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "005f5d74-b17e-d29f-1f44-8cd542419d2f" }, "ResponseBody": { "value": [ @@ -50,12 +52,12 @@ "hotelId": "5" }, { - "@search.text": "Very popular hotel in town", - "hotelId": "3" + "@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.", + "hotelId": "1" }, { - "@search.text": "Cheapest hotel in town. Infact, a motel.", - "hotelId": "2" + "@search.text": "Very popular hotel in town", + "hotelId": "3" } ] } @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "1819874471", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 4f94a7e0c5cf..f9aa7bcc4c7d 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefault.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-618fb53d3ffd7b4a99c04e9edcd40157-8858a6b4d8b1b441-00", + "traceparent": "00-7029fee8fb80a4438387e3c9a78ab569-b5262a0c68cd2644-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a64d6cc0a0ab2bb72beceacef8866324", "x-ms-return-client-request-id": "true" @@ -23,16 +23,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "a64d6cc0-a0ab-2bb7-2bec-eacef8866324", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "a64d6cc0-a0ab-2bb7-2bec-eacef8866324", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "a64d6cc0-a0ab-2bb7-2bec-eacef8866324" }, "ResponseBody": { "value": [] @@ -41,8 +43,8 @@ ], "Variables": { "RandomSeed": "1333988927", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 fb28a7d46492..016820df9938 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/FuzzyOffByDefaultAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-5f0ae2d37e4d2347a9f83a874af7e9bf-41f0784999b89c49-00", + "traceparent": "00-258f5bf00ba4d441a5408ebc75337686-086e3a495799e149-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "56ac557ee92414d470619bf75896109a", "x-ms-return-client-request-id": "true" @@ -23,16 +23,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "56ac557e-e924-14d4-7061-9bf75896109a", "Content-Length": "12", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "56ac557e-e924-14d4-7061-9bf75896109a", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "56ac557e-e924-14d4-7061-9bf75896109a" }, "ResponseBody": { "value": [] @@ -41,8 +43,8 @@ ], "Variables": { "RandomSeed": "752411689", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f43b8f1a2f01..6647e645aa59 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlighting.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "159", "Content-Type": "application/json", - "traceparent": "00-910251bb03b3a645860a863d728148ac-e2866c0f321ffa46-00", + "traceparent": "00-9f3fa0d9150219478bf34b40ecd4121a-3751a0e001136741-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0387e2d36fbcb030f57c066150877d06", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "0387e2d3-6fbc-b030-f57c-066150877d06", "Content-Length": "299", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "0387e2d3-6fbc-b030-f57c-066150877d06", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "0387e2d3-6fbc-b030-f57c-066150877d06" }, "ResponseBody": { "value": [ @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "1967020220", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 46ed538f4530..5e6cba220ccb 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/HitHighlightingAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "159", "Content-Type": "application/json", - "traceparent": "00-08136e26465fe54cb373f2ccf8cea0cc-4e23d313c1f0e340-00", + "traceparent": "00-86385f70bf410f46a24b1ef218544e28-c6fa264c95130448-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "58765b39dfd7902762f8f07e1710563b", "x-ms-return-client-request-id": "true" @@ -27,16 +27,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "58765b39-dfd7-9027-62f8-f07e1710563b", "Content-Length": "299", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "58765b39-dfd7-9027-62f8-f07e1710563b", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "58765b39-dfd7-9027-62f8-f07e1710563b" }, "ResponseBody": { "value": [ @@ -50,8 +52,8 @@ ], "Variables": { "RandomSeed": "756773262", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 b21c541f81b6..a31eef998087 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "61", "Content-Type": "application/json", - "traceparent": "00-f0a62f9f92f76f4f9f3a7fee59f07cc2-c629dd7754488841-00", + "traceparent": "00-7aa1c8d3aee6804a92d70b43ab412ad8-0cae170e25ad104a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "63dd7aed7b5561be2080a9c3bb921533", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "63dd7aed-7b55-61be-2080-a9c3bb921533", "Content-Length": "303", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "63dd7aed-7b55-61be-2080-a9c3bb921533", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "63dd7aed-7b55-61be-2080-a9c3bb921533" }, "ResponseBody": { "@search.coverage": 100.0, @@ -48,8 +50,8 @@ ], "Variables": { "RandomSeed": "58034553", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 549ff2be424a..550ed7f80f53 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/MinimumCoverageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "61", "Content-Type": "application/json", - "traceparent": "00-5f40dc049f372145bc595ff9c7d9f7bb-93a165b9137d8445-00", + "traceparent": "00-01f03aefe7a5d3498b1590b2002feb16-030cd622bfbce24d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ae08a93cc04157c1ed077c1d413dff2c", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "ae08a93c-c041-57c1-ed07-7c1d413dff2c", "Content-Length": "303", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "5", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "ae08a93c-c041-57c1-ed07-7c1d413dff2c", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "ae08a93c-c041-57c1-ed07-7c1d413dff2c" }, "ResponseBody": { "@search.coverage": 100.0, @@ -48,8 +50,8 @@ ], "Variables": { "RandomSeed": "85825459", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a1e0a89dcd9d..ff42604f0b8b 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTies.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-f2d7b3e5063f774bb3f040958713fc15-c6f6429923148b49-00", + "traceparent": "00-f3598423b024fb46a673589b39da7136-c0df229f69858a4a-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c005437f5bfa125b3dd553af1e9c6eb6", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "c005437f-5bfa-125b-3dd5-53af1e9c6eb6", "Content-Length": "757", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "42", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "9", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "c005437f-5bfa-125b-3dd5-53af1e9c6eb6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "c005437f-5bfa-125b-3dd5-53af1e9c6eb6" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "1406065597", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 819c8549a58f..4352f76c4259 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/OrderByProgressivelyBreaksTiesAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-c6cf7c684e460144b7246152d8c788bf-7b907dedd29dc14b-00", + "traceparent": "00-8e05be6dc2239941bafaa011eeb2275b-4027298771087246-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d1b2faf219913e4332eab23606965304", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "d1b2faf2-1991-3e43-32ea-b23606965304", "Content-Length": "757", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "8", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "d1b2faf2-1991-3e43-32ea-b23606965304", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "d1b2faf2-1991-3e43-32ea-b23606965304" }, "ResponseBody": { "value": [ @@ -63,8 +65,8 @@ ], "Variables": { "RandomSeed": "53198105", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 cfa328405b80..61271d6d1418 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFields.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-819d6c477c0fc24c9d919797f4c62344-a6af242f7556ce4b-00", + "traceparent": "00-05e433a7d8eaa244983439f643116735-003e5cf62efbdf49-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5d07e8d3ed806aabe001e6eb2ce02dc7", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5d07e8d3-ed80-6aab-e001-e6eb2ce02dc7", "Content-Length": "179", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "11", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5d07e8d3-ed80-6aab-e001-e6eb2ce02dc7", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5d07e8d3-ed80-6aab-e001-e6eb2ce02dc7" }, "ResponseBody": { "value": [ @@ -59,8 +61,8 @@ ], "Variables": { "RandomSeed": "1333403613", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 01a229d4b4a0..972a747f3a58 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SelectedFieldsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-e6f3bf831ebc524881ad1db81336f8b4-e29543eeb0a03b43-00", + "traceparent": "00-f4ab8b67cfdd7d4883d70b12063230ab-d78674bf4796954e-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "85b7c493e146d7e6cc030dc045845c8d", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "85b7c493-e146-d7e6-cc03-0dc045845c8d", "Content-Length": "179", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "5", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "85b7c493-e146-d7e6-cc03-0dc045845c8d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "85b7c493-e146-d7e6-cc03-0dc045845c8d" }, "ResponseBody": { "value": [ @@ -59,8 +61,8 @@ ], "Variables": { "RandomSeed": "83938125", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 cc56158d57e7..f249133af3d3 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResults.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-051ab8089aace94da9dbf9694dc62deb-d735ba533794624e-00", + "traceparent": "00-cf7c18e2acab0f4fa5c9c4a2084ec0e7-6a4a405554c8014b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "44b116808507066b7104fa5565440add", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "44b11680-8507-066b-7104-fa5565440add", "Content-Length": "551", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "44b11680-8507-066b-7104-fa5565440add", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "44b11680-8507-066b-7104-fa5565440add" }, "ResponseBody": { "value": [ @@ -56,8 +58,8 @@ ], "Variables": { "RandomSeed": "2021917347", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 45a9eb62cd16..945d54660fee 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SizeTrimsResultsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "67", "Content-Type": "application/json", - "traceparent": "00-eb924cf4d1e9864db983c10a1d71144d-28a23419b637f443-00", + "traceparent": "00-869cb822872ffa468b53eaf6b1fdb230-1820adfe7bc32d4b-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f2920ec48064c1d50a0ecf326c97535e", "x-ms-return-client-request-id": "true" @@ -25,16 +25,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f2920ec4-8064-c1d5-0a0e-cf326c97535e", "Content-Length": "551", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f2920ec4-8064-c1d5-0a0e-cf326c97535e", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f2920ec4-8064-c1d5-0a0e-cf326c97535e" }, "ResponseBody": { "value": [ @@ -56,8 +58,8 @@ ], "Variables": { "RandomSeed": "1959444883", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 f939c5dc5348..075185ab80cf 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-451d09431be91746b6c7d909da906e8b-6797c2a2cc87604a-00", + "traceparent": "00-3da1697e0bbdfd4eb6ea92b202bf1821-102edd8653269342-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3a6d7ff45109c28a122f45e4f31e0868", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "3a6d7ff4-5109-c28a-122f-45e4f31e0868", "Content-Length": "334", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "7", + "Date": "Fri, 26 Jun 2020 06:36:24 GMT", + "elapsed-time": "32", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "3a6d7ff4-5109-c28a-122f-45e4f31e0868", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "3a6d7ff4-5109-c28a-122f-45e4f31e0868" }, "ResponseBody": { "value": [ @@ -51,8 +53,8 @@ ], "Variables": { "RandomSeed": "1377017195", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 c1093bce17b6..d5eeb5de43a9 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestDynamicDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-0a764925f0bc9c4bb0e153ea1a748cae-d8245dd9780d404a-00", + "traceparent": "00-c26c7eb10000b940b4f41322e0749dca-23cfe46dca29264d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8aea32486b8e73b463e7b6ba609fe73d", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "8aea3248-6b8e-73b4-63e7-b6ba609fe73d", "Content-Length": "334", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "6", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "8aea3248-6b8e-73b4-63e7-b6ba609fe73d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "8aea3248-6b8e-73b4-63e7-b6ba609fe73d" }, "ResponseBody": { "value": [ @@ -51,8 +53,8 @@ ], "Variables": { "RandomSeed": "1512668849", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 de3814b6308a..3bdce59b1095 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocuments.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-8e03bb071dca3441bf679fb5b4d15952-bfc1d89765e2a049-00", + "traceparent": "00-5d795bcbd02b4245ac515fa0b0c871d0-4d053f8f59effa46-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "81b8a3d9bab6944220aed8b336142413", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "81b8a3d9-bab6-9442-20ae-d8b336142413", "Content-Length": "334", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", "elapsed-time": "6", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "81b8a3d9-bab6-9442-20ae-d8b336142413", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "81b8a3d9-bab6-9442-20ae-d8b336142413" }, "ResponseBody": { "value": [ @@ -51,8 +53,8 @@ ], "Variables": { "RandomSeed": "861171183", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 e8af0649f63e..1a8689e41298 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/SuggestStaticDocumentsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "58", "Content-Type": "application/json", - "traceparent": "00-1d6fe4f7ce96654581cd091cece28165-c3d9cc4fefa22342-00", + "traceparent": "00-53a3faf734edd0498db82e5bb058bd93-ba3ac210337bed4d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5ed4e615262c9336eedc0e0158df5f99", "x-ms-return-client-request-id": "true" @@ -24,16 +24,18 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "5ed4e615-262c-9336-eedc-0e0158df5f99", "Content-Length": "334", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "8", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "7", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "5ed4e615-262c-9336-eedc-0e0158df5f99", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "5ed4e615-262c-9336-eedc-0e0158df5f99" }, "ResponseBody": { "value": [ @@ -51,8 +53,8 @@ ], "Variables": { "RandomSeed": "310565316", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 a6fd4e390915..586ba7a9ad96 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterName.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-582a0c4e3be2fa44b3ae68d6a72e9401-89dfef80f7fb5e4a-00", + "traceparent": "00-77039d00803b784f9a712b1aac80502b-e52e57e731bad146-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "82280cacac79a2d1f134fdc3c67e19e6", "x-ms-return-client-request-id": "true" @@ -23,17 +23,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "82280cac-ac79-a2d1-f134-fdc3c67e19e6", "Content-Language": "en", "Content-Length": "147", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "4", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "82280cac-ac79-a2d1-f134-fdc3c67e19e6", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "82280cac-ac79-a2d1-f134-fdc3c67e19e6" }, "ResponseBody": { "error": { @@ -45,8 +47,8 @@ ], "Variables": { "RandomSeed": "1418306410", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 26c3b0857cac..64c1f2db39df 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenGivenBadSuggesterNameAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "54", "Content-Type": "application/json", - "traceparent": "00-8612102e10452f4a89f160d4b537ce2f-74d79d6fc083f148-00", + "traceparent": "00-498755386cc5f34493acc6c6a646c4eb-3c6e01c4d2d2904d-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bcadf003578d82f6430593e81346ab31", "x-ms-return-client-request-id": "true" @@ -23,17 +23,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "bcadf003-578d-82f6-4305-93e81346ab31", "Content-Language": "en", "Content-Length": "147", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "bcadf003-578d-82f6-4305-93e81346ab31", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "bcadf003-578d-82f6-4305-93e81346ab31" }, "ResponseBody": { "error": { @@ -45,8 +47,8 @@ ], "Variables": { "RandomSeed": "931425957", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 189bcdd2fcdb..89b28d640dd4 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformed.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-4d28adc1463fd947a57bce7002117aa7-1ac22d15f4a9204a-00", + "traceparent": "00-59162b8d0910d04ea118296c30a0702f-40346469a3b2444f-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1cd2d2b1034fc6dee7c6001c8d1088ce", "x-ms-return-client-request-id": "true" @@ -24,17 +24,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "1cd2d2b1-034f-c6de-e7c6-001c8d1088ce", "Content-Language": "en", "Content-Length": "143", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:20 GMT", - "elapsed-time": "2", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "3", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "1cd2d2b1-034f-c6de-e7c6-001c8d1088ce", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "1cd2d2b1-034f-c6de-e7c6-001c8d1088ce" }, "ResponseBody": { "error": { @@ -46,8 +48,8 @@ ], "Variables": { "RandomSeed": "1402415131", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 fafa3b41ff3a..576bd11136f7 100644 --- a/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json +++ b/sdk/search/Azure.Search.Documents/tests/SessionRecords/SuggestTests/ThrowsWhenRequestIsMalformedAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://azs-net-heathsearch2.search.windows.net/indexes(\u0027yrehvsfy\u0027)/docs/search.post.suggest?api-version=2019-05-06-Preview", + "RequestUri": "https://azs-net-heathsrchtst.search.windows.net/indexes(\u0027josgoidr\u0027)/docs/search.post.suggest?api-version=2020-06-30", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json; odata.metadata=none", "api-key": "Sanitized", "Content-Length": "80", "Content-Type": "application/json", - "traceparent": "00-99687f1e5b566d41b3af69d53e0a1a66-fe68f0b3f3ec024c-00", + "traceparent": "00-7c7c0d723c3bc34eb55582145e97a574-9f1425433f325644-00", "User-Agent": [ - "azsdk-net-Search.Documents/1.0.0-dev.20200507.1", - "(.NET Core 4.6.28619.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Search.Documents/11.0.0-dev.20200625.1", + "(.NET Core 4.6.28928.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f59f7a8885a1f362618688d19579334d", "x-ms-return-client-request-id": "true" @@ -24,17 +24,19 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", + "client-request-id": "f59f7a88-85a1-f362-6186-88d19579334d", "Content-Language": "en", "Content-Length": "143", "Content-Type": "application/json; odata.metadata=none", - "Date": "Fri, 08 May 2020 07:10:21 GMT", - "elapsed-time": "3", + "Date": "Fri, 26 Jun 2020 06:36:25 GMT", + "elapsed-time": "2", "Expires": "-1", "OData-Version": "4.0", "Pragma": "no-cache", "Preference-Applied": "odata.include-annotations=\u0022*\u0022", "request-id": "f59f7a88-85a1-f362-6186-88d19579334d", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains" + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "x-ms-client-request-id": "f59f7a88-85a1-f362-6186-88d19579334d" }, "ResponseBody": { "error": { @@ -46,8 +48,8 @@ ], "Variables": { "RandomSeed": "1081499379", - "SearchIndexName": "yrehvsfy", + "SearchIndexName": "josgoidr", "SEARCH_QUERY_API_KEY": "Sanitized", - "SEARCH_SERVICE_NAME": "azs-net-heathsearch2" + "SEARCH_SERVICE_NAME": "azs-net-heathsrchtst" } } \ 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 eec139dd750c..b19d939cc038 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchRecordedTestSanitizer.cs @@ -102,6 +102,13 @@ private static string SanitizeVariable(ISet secrets, string name, string return SanitizeValue; } + if (SearchTestEnvironment.CognitiveKeyVariableName.Equals(name, StringComparison.OrdinalIgnoreCase)) + { + secrets.Add(value); + + return SanitizeValue; + } + if (SearchTestEnvironment.SearchAdminKeyVariableName.Equals(name, StringComparison.OrdinalIgnoreCase) || SearchTestEnvironment.SearchQueryKeyVariableName.Equals(name, StringComparison.OrdinalIgnoreCase)) { diff --git a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchResources.cs b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchResources.cs index 1641efecaf2c..718b136e990e 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchResources.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchResources.cs @@ -58,6 +58,11 @@ public partial class SearchResources : IAsyncDisposable /// public string StorageAccountConnectionString => $"DefaultEndpointsProtocol=https;AccountName={StorageAccountName};AccountKey={StorageAccountKey};EndpointSuffix=core.windows.net"; + /// + /// The Cognitive Services key. + /// + public string CognitiveServicesKey => TestFixture.TestEnvironment.SearchCognitiveKey; + /// /// The name of the blob container. /// diff --git a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestBase.cs b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestBase.cs index 9e65b12a4260..7e6817df2936 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestBase.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestBase.cs @@ -3,6 +3,7 @@ using System; using System.Net.Http; +using System.Text; using System.Threading; using System.Threading.Tasks; using Azure.Core; @@ -11,6 +12,8 @@ using Azure.Core.Spatial; #endif using Azure.Core.TestFramework; +using Azure.Search.Documents.Indexes; +using Azure.Search.Documents.Indexes.Models; using Azure.Search.Documents.Models; using NUnit.Framework; @@ -20,7 +23,7 @@ namespace Azure.Search.Documents.Tests /// Base class for Search unit tests that adds shared infrastructure on top /// of the Azure.Core testing framework. /// - [ClientTestFixture(SearchClientOptions.ServiceVersion.V2019_05_06_Preview)] + [ClientTestFixture(SearchClientOptions.ServiceVersion.V2020_06_30)] public abstract partial class SearchTestBase : RecordedTestBase { /// @@ -174,5 +177,61 @@ static void AssertEqual(object e, object a, string path) Assert.AreEqual(e, a, $"Expected value `{e}`{location}, not `{a}`."); } } + + /// + /// Waits for an indexer to complete up to the given . + /// + /// The to use for requests. + /// The name of the to check. + /// The amount of time before being canceled. The default is 1 minute. + /// A to await. + protected async Task WaitForIndexingAsync( + SearchIndexerClient client, + string indexerName, + TimeSpan? timeout = null) + { + TimeSpan delay = TimeSpan.FromSeconds(10); + timeout ??= TimeSpan.FromMinutes(5); + + using CancellationTokenSource cts = new CancellationTokenSource(timeout.Value); + + while (true) + { + await DelayAsync(delay, cancellationToken: cts.Token); + + SearchIndexerStatus status = await client.GetIndexerStatusAsync( + indexerName, + cancellationToken: cts.Token); + + if (status.Status == IndexerStatus.Running) + { + if (status.LastResult?.Status == IndexerExecutionStatus.Success) + { + return; + } + else if (status.LastResult?.Status == IndexerExecutionStatus.TransientFailure && + status.LastResult is IndexerExecutionResult lastResult) + { + TestContext.WriteLine($"Transient error: {lastResult.ErrorMessage}"); + } + } + else if (status.Status == IndexerStatus.Error && + status.LastResult is IndexerExecutionResult lastResult) + { + StringBuilder sb = new StringBuilder(); + sb.AppendLine($"Error: {lastResult.ErrorMessage}"); + + if (lastResult.Errors?.Count > 0) + { + foreach (SearchIndexerError error in lastResult.Errors) + { + sb.AppendLine($" ---> {error.ErrorMessage}"); + } + } + + Assert.Fail(sb.ToString()); + } + } + } } } diff --git a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs index 0e75810f7394..232f47b041d9 100644 --- a/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs +++ b/sdk/search/Azure.Search.Documents/tests/Utilities/SearchTestEnvironment.cs @@ -25,6 +25,11 @@ public class SearchTestEnvironment: TestEnvironment /// public const string StorageAccountKeyVariableName = "SEARCH_STORAGE_KEY"; + /// + /// The name of the variable for . + /// + public const string CognitiveKeyVariableName = "SEARCH_COGNITIVE_KEY"; + /// /// Creates a new instance of the class. /// @@ -56,5 +61,10 @@ public SearchTestEnvironment() : base("search") /// Gets the storage account key for external data sources. /// public string SearchStorageKey => GetRecordedVariable(StorageAccountKeyVariableName); + + /// + /// Gets the Cognitive Services key for skillsets. + /// + public string SearchCognitiveKey => GetRecordedVariable(CognitiveKeyVariableName); } } diff --git a/sdk/search/generate.ps1 b/sdk/search/generate.ps1 deleted file mode 100644 index 4b5ac180b2b7..000000000000 --- a/sdk/search/generate.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -# -# Generate Azure.Search.Documents -# -Push-Location $PSScriptRoot/Azure.Search.Documents/src/ - -# We're doing a copy instead of a reference until we can merge them together -# because AutoRest doesn't play well with two remote swagger files. (We only -# warn on failure so offline regeneration plays nicely for those of us coding -# on the bus.) -Write-Output "Copying latest swagger files..." -Invoke-WebRequest https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchindex.json ` - -OutFile ./swagger/searchindex.json ` - -ErrorAction Continue -Invoke-WebRequest https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchservice.json ` - -OutFile ./swagger/searchservice.json ` - -ErrorAction Continue - -Write-Output "Generating Azure.Search.Documents..." -dotnet msbuild /t:GenerateCode - -Pop-Location diff --git a/sdk/search/test-resources.json b/sdk/search/test-resources.json index 8b4598160667..0784747ab83f 100644 --- a/sdk/search/test-resources.json +++ b/sdk/search/test-resources.json @@ -58,7 +58,9 @@ "searchServiceName": "[concat('azs-net-', parameters('baseName'))]", "searchApiVersion": "2020-03-13", "storageAccountName": "[concat(parameters('baseName'), 'stg')]", - "storageApiVersion": "2019-06-01" + "storageApiVersion": "2019-06-01", + "cognitiveServicesAccountName": "[concat(parameters('baseName'), 'cog')]", + "cognitiveServicesApiVersion": "2017-04-18" }, "resources": [ { @@ -92,6 +94,22 @@ "name": "Standard_LRS" }, "kind": "BlobStorage" + }, + { + "name": "[variables('cognitiveServicesAccountName')]", + "type": "Microsoft.CognitiveServices/accounts", + "apiVersion": "[variables('cognitiveServicesApiVersion')]", + "location": "[parameters('location')]", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "properties": { + "apiProperties": { + "statisticsEnabled": false + }, + "publicNetworkAccess": "Enabled" + } } ], "outputs": { @@ -114,6 +132,10 @@ "SEARCH_STORAGE_KEY": { "type": "string", "value": "[listKeys(variables('storageAccountName'), variables('storageApiVersion')).keys[0].value]" + }, + "SEARCH_COGNITIVE_KEY": { + "type": "string", + "value": "[listKeys(variables('cognitiveServicesAccountName'), variables('cognitiveServicesApiVersion')).key1]" } } } \ No newline at end of file